# source: http://localhost:3000/api/ # timestamp: Fri Aug 16 2019 09:41:56 GMT+0300 (GMT+03:00) """Automaticly include all fields from schema""" directive @prismaCmsFragmentAllFields(if: Boolean = true) on FRAGMENT_DEFINITION type AggregateChange { count: Int! } type AggregateChatMessage { count: Int! } type AggregateChatMessageReaded { count: Int! } type AggregateChatRoom { count: Int! } type AggregateChatRoomInvitation { count: Int! } type AggregateDiscountGroup { count: Int! } type AggregateExpertise { count: Int! } type AggregateExpertiser { count: Int! } type AggregateFile { count: Int! } type AggregateGame { count: Int! } type AggregateGameResult { count: Int! } type AggregateInvoice { count: Int! } type AggregateInvoiceItem { count: Int! } type AggregateLetsadsSmsMessageStatus { count: Int! } type AggregateLetsadsSmsMessageStatusItem { count: Int! } type AggregateLetter { count: Int! } type AggregateLog { count: Int! } type AggregateLogedIn { count: Int! } type AggregateModxUser { count: Int! } type AggregateNotice { count: Int! } type AggregateNotificationType { count: Int! } type AggregateOrder { count: Int! } type AggregateOrderItem { count: Int! } type AggregatePosition { count: Int! } type AggregateProject { count: Int! } type AggregateProjectMember { count: Int! } type AggregateResetPassword { count: Int! } type AggregateResource { count: Int! } type AggregateResourceTag { count: Int! } type AggregateRoute { count: Int! } type AggregateService { count: Int! } type AggregateServiceCategory { count: Int! } type AggregateServiceOrder { count: Int! } type AggregateSmsMessage { count: Int! } type AggregateSmsProvider { count: Int! } type AggregateTag { count: Int! } type AggregateTarif { count: Int! } type AggregateTask { count: Int! } type AggregateTaskMember { count: Int! } type AggregateTaskReaction { count: Int! } type AggregateTeam { count: Int! } type AggregateTeamMember { count: Int! } type AggregateTemplate { count: Int! } type AggregateTimer { count: Int! } type AggregateTournament { count: Int! } type AggregateTournamentGroup { count: Int! } type AggregateTourney { count: Int! } type AggregateUser { count: Int! } type AggregateUserGroup { count: Int! } type AggregateVote { count: Int! } type AuthPayload { success: Boolean! message: String errors: [Error!]! token: String data: User } type BatchPayload { """The number of nodes that have been affected by the Batch operation.""" count: Long! } type Change implements Node { id: ID! secondID: ID createdAt: DateTime! updatedAt: DateTime! ChangedObject: ChangedObject! objectId: ID mutation: MutationType! data: Json syncStatus: ChangeSyncStatus! errorMessage: String errorStack: Json User(where: UserWhereInput): User! } """A connection to a list of items.""" type ChangeConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [ChangeEdge]! aggregate: AggregateChange! } input ChangeCreateInput { secondID: ID ChangedObject: ChangedObject! objectId: ID mutation: MutationType! data: Json syncStatus: ChangeSyncStatus errorMessage: String errorStack: Json User: UserCreateOneWithoutChangesInput! } input ChangeCreateManyWithoutUserInput { connect: [ChangeWhereUniqueInput!] } input ChangeCreateWithoutUserInput { secondID: ID ChangedObject: ChangedObject! objectId: ID mutation: MutationType! data: Json syncStatus: ChangeSyncStatus errorMessage: String errorStack: Json } enum ChangedObject { Order OrderItem } """An edge in a connection.""" type ChangeEdge { """The item at the end of the edge.""" node: Change! """A cursor for use in pagination.""" cursor: String! } enum ChangeOrderByInput { id_ASC id_DESC secondID_ASC secondID_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC ChangedObject_ASC ChangedObject_DESC objectId_ASC objectId_DESC mutation_ASC mutation_DESC data_ASC data_DESC syncStatus_ASC syncStatus_DESC errorMessage_ASC errorMessage_DESC errorStack_ASC errorStack_DESC } type ChangePreviousValues { id: ID! secondID: ID createdAt: DateTime! updatedAt: DateTime! ChangedObject: ChangedObject! objectId: ID mutation: MutationType! data: Json syncStatus: ChangeSyncStatus! errorMessage: String errorStack: Json } type ChangeSubscriptionPayload { mutation: MutationType! node: Change updatedFields: [String!] previousValues: ChangePreviousValues } input ChangeSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [ChangeSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [ChangeSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ChangeSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: ChangeWhereInput } enum ChangeSyncStatus { Created Processing Error Success } input ChangeUpdateInput { secondID: ID ChangedObject: ChangedObject objectId: ID mutation: MutationType data: Json syncStatus: ChangeSyncStatus errorMessage: String errorStack: Json User: UserUpdateOneWithoutChangesInput } input ChangeUpdateManyWithoutUserInput { connect: [ChangeWhereUniqueInput!] disconnect: [ChangeWhereUniqueInput!] } input ChangeUpdateWithoutUserDataInput { secondID: ID ChangedObject: ChangedObject objectId: ID mutation: MutationType data: Json syncStatus: ChangeSyncStatus errorMessage: String errorStack: Json } input ChangeUpdateWithWhereUniqueWithoutUserInput { where: ChangeWhereUniqueInput! data: ChangeUpdateWithoutUserDataInput! } input ChangeUpsertWithWhereUniqueWithoutUserInput { where: ChangeWhereUniqueInput! } input ChangeWhereInput { """Logical AND on all given filters.""" AND: [ChangeWhereInput!] """Logical OR on all given filters.""" OR: [ChangeWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ChangeWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID secondID: ID """All values that are not equal to given value.""" secondID_not: ID """All values that are contained in given list.""" secondID_in: [ID!] """All values that are not contained in given list.""" secondID_not_in: [ID!] """All values less than the given value.""" secondID_lt: ID """All values less than or equal the given value.""" secondID_lte: ID """All values greater than the given value.""" secondID_gt: ID """All values greater than or equal the given value.""" secondID_gte: ID """All values containing the given string.""" secondID_contains: ID """All values not containing the given string.""" secondID_not_contains: ID """All values starting with the given string.""" secondID_starts_with: ID """All values not starting with the given string.""" secondID_not_starts_with: ID """All values ending with the given string.""" secondID_ends_with: ID """All values not ending with the given string.""" secondID_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime ChangedObject: ChangedObject """All values that are not equal to given value.""" ChangedObject_not: ChangedObject """All values that are contained in given list.""" ChangedObject_in: [ChangedObject!] """All values that are not contained in given list.""" ChangedObject_not_in: [ChangedObject!] objectId: ID """All values that are not equal to given value.""" objectId_not: ID """All values that are contained in given list.""" objectId_in: [ID!] """All values that are not contained in given list.""" objectId_not_in: [ID!] """All values less than the given value.""" objectId_lt: ID """All values less than or equal the given value.""" objectId_lte: ID """All values greater than the given value.""" objectId_gt: ID """All values greater than or equal the given value.""" objectId_gte: ID """All values containing the given string.""" objectId_contains: ID """All values not containing the given string.""" objectId_not_contains: ID """All values starting with the given string.""" objectId_starts_with: ID """All values not starting with the given string.""" objectId_not_starts_with: ID """All values ending with the given string.""" objectId_ends_with: ID """All values not ending with the given string.""" objectId_not_ends_with: ID mutation: MutationType """All values that are not equal to given value.""" mutation_not: MutationType """All values that are contained in given list.""" mutation_in: [MutationType!] """All values that are not contained in given list.""" mutation_not_in: [MutationType!] syncStatus: ChangeSyncStatus """All values that are not equal to given value.""" syncStatus_not: ChangeSyncStatus """All values that are contained in given list.""" syncStatus_in: [ChangeSyncStatus!] """All values that are not contained in given list.""" syncStatus_not_in: [ChangeSyncStatus!] errorMessage: String """All values that are not equal to given value.""" errorMessage_not: String """All values that are contained in given list.""" errorMessage_in: [String!] """All values that are not contained in given list.""" errorMessage_not_in: [String!] """All values less than the given value.""" errorMessage_lt: String """All values less than or equal the given value.""" errorMessage_lte: String """All values greater than the given value.""" errorMessage_gt: String """All values greater than or equal the given value.""" errorMessage_gte: String """All values containing the given string.""" errorMessage_contains: String """All values not containing the given string.""" errorMessage_not_contains: String """All values starting with the given string.""" errorMessage_starts_with: String """All values not starting with the given string.""" errorMessage_not_starts_with: String """All values ending with the given string.""" errorMessage_ends_with: String """All values not ending with the given string.""" errorMessage_not_ends_with: String User: UserWhereInput } input ChangeWhereUniqueInput { id: ID secondID: ID } type ChatMessage implements Node { id: ID! createdAt: DateTime! User(where: UserWhereInput): User! ChatRoom(where: ChatRoomWhereInput): ChatRoom text: Json! ReadedBy(where: ChatMessageReadedWhereInput, orderBy: ChatMessageReadedOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ChatMessageReaded!] } """A connection to a list of items.""" type ChatMessageConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [ChatMessageEdge]! aggregate: AggregateChatMessage! } input ChatMessageCreateInput { text: Json! to: ID roomId: ID token: String """Надо ли отправить копию на емейл""" notifyByEmail: Boolean """Каких пользователей надо уведомить""" emailUsers: [ID!] content: Json Room: ChatRoomCreateOneWithoutMessagesInput } input ChatMessageCreateManyInput { connect: [ChatMessageWhereUniqueInput!] } input ChatMessageCreateManyWithoutChatRoomInput { connect: [ChatMessageWhereUniqueInput!] } input ChatMessageCreateOneInput { connect: ChatMessageWhereUniqueInput } input ChatMessageCreateOneWithoutReadedByInput { connect: ChatMessageWhereUniqueInput } input ChatMessageCreateWithoutChatRoomInput { text: Json! User: UserCreateOneInput! ReadedBy: ChatMessageReadedCreateManyWithoutMessageInput } input ChatMessageCreateWithoutReadedByInput { text: Json! User: UserCreateOneInput! ChatRoom: ChatRoomCreateOneWithoutMessagesInput } """An edge in a connection.""" type ChatMessageEdge { """The item at the end of the edge.""" node: ChatMessage! """A cursor for use in pagination.""" cursor: String! } enum ChatMessageOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC text_ASC text_DESC updatedAt_ASC updatedAt_DESC } type ChatMessagePreviousValues { id: ID! createdAt: DateTime! text: Json! } type ChatMessageReaded implements Node { id: ID! createdAt: DateTime! Message(where: ChatMessageWhereInput): ChatMessage! User(where: UserWhereInput): User! } """A connection to a list of items.""" type ChatMessageReadedConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [ChatMessageReadedEdge]! aggregate: AggregateChatMessageReaded! } input ChatMessageReadedCreateInput { Message: ChatMessageCreateOneWithoutReadedByInput! } input ChatMessageReadedCreateManyInput { connect: [ChatMessageReadedWhereUniqueInput!] } input ChatMessageReadedCreateManyWithoutMessageInput { connect: [ChatMessageReadedWhereUniqueInput!] } input ChatMessageReadedCreateWithoutMessageInput { User: UserCreateOneInput! } """An edge in a connection.""" type ChatMessageReadedEdge { """The item at the end of the edge.""" node: ChatMessageReaded! """A cursor for use in pagination.""" cursor: String! } enum ChatMessageReadedOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC } type ChatMessageReadedPreviousValues { id: ID! createdAt: DateTime! } type ChatMessageReadedResponse { success: Boolean! message: String! errors: [Error!]! data: ChatMessageReaded } type ChatMessageReadedSubscriptionPayload { mutation: MutationType! node: ChatMessageReaded updatedFields: [String!] previousValues: ChatMessageReadedPreviousValues } input ChatMessageReadedSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [ChatMessageReadedSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [ChatMessageReadedSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ChatMessageReadedSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: ChatMessageReadedWhereInput } input ChatMessageReadedUpdateDataInput { Message: ChatMessageUpdateOneWithoutReadedByInput User: UserUpdateOneInput } input ChatMessageReadedUpdateInput { Message: ChatMessageUpdateOneWithoutReadedByInput User: UserUpdateOneInput } input ChatMessageReadedUpdateManyInput { connect: [ChatMessageReadedWhereUniqueInput!] disconnect: [ChatMessageReadedWhereUniqueInput!] } input ChatMessageReadedUpdateManyWithoutMessageInput { connect: [ChatMessageReadedWhereUniqueInput!] disconnect: [ChatMessageReadedWhereUniqueInput!] } input ChatMessageReadedUpdateWithoutMessageDataInput { User: UserUpdateOneInput } input ChatMessageReadedUpdateWithWhereUniqueNestedInput { where: ChatMessageReadedWhereUniqueInput! data: ChatMessageReadedUpdateDataInput! } input ChatMessageReadedUpdateWithWhereUniqueWithoutMessageInput { where: ChatMessageReadedWhereUniqueInput! data: ChatMessageReadedUpdateWithoutMessageDataInput! } input ChatMessageReadedUpsertWithWhereUniqueNestedInput { where: ChatMessageReadedWhereUniqueInput! } input ChatMessageReadedUpsertWithWhereUniqueWithoutMessageInput { where: ChatMessageReadedWhereUniqueInput! } input ChatMessageReadedWhereInput { """Logical AND on all given filters.""" AND: [ChatMessageReadedWhereInput!] """Logical OR on all given filters.""" OR: [ChatMessageReadedWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ChatMessageReadedWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime Message: ChatMessageWhereInput User: UserWhereInput } input ChatMessageReadedWhereUniqueInput { id: ID } type ChatMessageResponse { success: Boolean! message: String! errors: [Error!]! data: ChatMessage } type ChatMessageSubscriptionPayload { mutation: MutationType! node: ChatMessage updatedFields: [String!] previousValues: ChatMessagePreviousValues } input ChatMessageSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [ChatMessageSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [ChatMessageSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ChatMessageSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: ChatMessageWhereInput } input ChatMessageUpdateDataInput { text: Json User: UserUpdateOneInput ChatRoom: ChatRoomUpdateOneWithoutMessagesInput ReadedBy: ChatMessageReadedUpdateManyWithoutMessageInput } input ChatMessageUpdateInput { content: Json } input ChatMessageUpdateManyInput { connect: [ChatMessageWhereUniqueInput!] disconnect: [ChatMessageWhereUniqueInput!] } input ChatMessageUpdateManyWithoutChatRoomInput { connect: [ChatMessageWhereUniqueInput!] disconnect: [ChatMessageWhereUniqueInput!] } input ChatMessageUpdateOneInput { connect: ChatMessageWhereUniqueInput disconnect: Boolean } input ChatMessageUpdateOneWithoutReadedByInput { connect: ChatMessageWhereUniqueInput } input ChatMessageUpdateWithoutChatRoomDataInput { text: Json User: UserUpdateOneInput ReadedBy: ChatMessageReadedUpdateManyWithoutMessageInput } input ChatMessageUpdateWithoutReadedByDataInput { text: Json User: UserUpdateOneInput ChatRoom: ChatRoomUpdateOneWithoutMessagesInput } input ChatMessageUpdateWithWhereUniqueNestedInput { where: ChatMessageWhereUniqueInput! data: ChatMessageUpdateDataInput! } input ChatMessageUpdateWithWhereUniqueWithoutChatRoomInput { where: ChatMessageWhereUniqueInput! data: ChatMessageUpdateWithoutChatRoomDataInput! } input ChatMessageUpsertWithWhereUniqueNestedInput { where: ChatMessageWhereUniqueInput! } input ChatMessageUpsertWithWhereUniqueWithoutChatRoomInput { where: ChatMessageWhereUniqueInput! } input ChatMessageWhereInput { """Logical AND on all given filters.""" AND: [ChatMessageWhereInput!] """Logical OR on all given filters.""" OR: [ChatMessageWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ChatMessageWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime User: UserWhereInput ChatRoom: ChatRoomWhereInput ReadedBy_every: ChatMessageReadedWhereInput ReadedBy_some: ChatMessageReadedWhereInput ReadedBy_none: ChatMessageReadedWhereInput } input ChatMessageWhereUniqueInput { id: ID } type ChatRoom implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! name: String Members(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User!] Messages(where: ChatMessageWhereInput, orderBy: ChatMessageOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ChatMessage!] CreatedBy(where: UserWhereInput): User! foo: DateTime Customer(where: UserWhereInput): User! } """A connection to a list of items.""" type ChatRoomConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [ChatRoomEdge]! aggregate: AggregateChatRoom! } input ChatRoomCreateInput { name: String! Members: UserCreateManyWithoutRoomsInput isPublic: Boolean = false code: ID Task: TaskCreateOneWithoutChatRoomInput } input ChatRoomCreateManyInput { connect: [ChatRoomWhereUniqueInput!] } input ChatRoomCreateManyWithoutCreatedByInput { connect: [ChatRoomWhereUniqueInput!] } input ChatRoomCreateManyWithoutCustomerInput { connect: [ChatRoomWhereUniqueInput!] } input ChatRoomCreateManyWithoutMembersInput { connect: [ChatRoomWhereUniqueInput!] } input ChatRoomCreateOneInput { connect: ChatRoomWhereUniqueInput } input ChatRoomCreateOneWithoutMessagesInput { to: ID connect: ChatRoomWhereUniqueInput } input ChatRoomCreateWithoutCreatedByInput { name: String foo: DateTime Members: UserCreateManyWithoutChatRoomsInput Messages: ChatMessageCreateManyWithoutChatRoomInput Customer: UserCreateOneWithoutCustomerChatsInput! } input ChatRoomCreateWithoutCustomerInput { name: String foo: DateTime Members: UserCreateManyWithoutChatRoomsInput Messages: ChatMessageCreateManyWithoutChatRoomInput CreatedBy: UserCreateOneWithoutCreatedRoomsInput! } input ChatRoomCreateWithoutMembersInput { name: String foo: DateTime Messages: ChatMessageCreateManyWithoutChatRoomInput CreatedBy: UserCreateOneWithoutCreatedRoomsInput! Customer: UserCreateOneWithoutCustomerChatsInput! } input ChatRoomCreateWithoutMessagesInput { name: String foo: DateTime Members: UserCreateManyWithoutChatRoomsInput CreatedBy: UserCreateOneWithoutCreatedRoomsInput! Customer: UserCreateOneWithoutCustomerChatsInput! } """An edge in a connection.""" type ChatRoomEdge { """The item at the end of the edge.""" node: ChatRoom! """A cursor for use in pagination.""" cursor: String! } type ChatRoomInvitation implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! CreatedBy(where: UserWhereInput): User! User(where: UserWhereInput): User! ChatRoom(where: ChatRoomWhereInput): ChatRoom! Notice(where: NoticeWhereInput): Notice } """A connection to a list of items.""" type ChatRoomInvitationConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [ChatRoomInvitationEdge]! aggregate: AggregateChatRoomInvitation! } input ChatRoomInvitationCreateInput { CreatedBy: UserCreateOneInput! User: UserCreateOneInput! ChatRoom: ChatRoomCreateOneInput! Notice: NoticeCreateOneWithoutChatRoomInvitationInput } input ChatRoomInvitationCreateOneWithoutNoticeInput { connect: ChatRoomInvitationWhereUniqueInput } input ChatRoomInvitationCreateWithoutNoticeInput { CreatedBy: UserCreateOneInput! User: UserCreateOneInput! ChatRoom: ChatRoomCreateOneInput! } """An edge in a connection.""" type ChatRoomInvitationEdge { """The item at the end of the edge.""" node: ChatRoomInvitation! """A cursor for use in pagination.""" cursor: String! } enum ChatRoomInvitationOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC } type ChatRoomInvitationPreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! } type ChatRoomInvitationSubscriptionPayload { mutation: MutationType! node: ChatRoomInvitation updatedFields: [String!] previousValues: ChatRoomInvitationPreviousValues } input ChatRoomInvitationSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [ChatRoomInvitationSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [ChatRoomInvitationSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ChatRoomInvitationSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: ChatRoomInvitationWhereInput } input ChatRoomInvitationUpdateInput { CreatedBy: UserUpdateOneInput User: UserUpdateOneInput ChatRoom: ChatRoomUpdateOneInput Notice: NoticeUpdateOneWithoutChatRoomInvitationInput } input ChatRoomInvitationUpdateOneWithoutNoticeInput { connect: ChatRoomInvitationWhereUniqueInput disconnect: Boolean } input ChatRoomInvitationUpdateWithoutNoticeDataInput { CreatedBy: UserUpdateOneInput User: UserUpdateOneInput ChatRoom: ChatRoomUpdateOneInput } input ChatRoomInvitationWhereInput { """Logical AND on all given filters.""" AND: [ChatRoomInvitationWhereInput!] """Logical OR on all given filters.""" OR: [ChatRoomInvitationWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ChatRoomInvitationWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime CreatedBy: UserWhereInput User: UserWhereInput ChatRoom: ChatRoomWhereInput Notice: NoticeWhereInput } input ChatRoomInvitationWhereUniqueInput { id: ID } input ChatRoomInviteInput { User: UserWhereUniqueInput! } enum ChatRoomOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC name_ASC name_DESC foo_ASC foo_DESC } type ChatRoomPreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! name: String foo: DateTime } type ChatRoomResponse { success: Boolean! message: String! errors: [Error!]! data: ChatRoom } type ChatRoomSubscriptionPayload { mutation: MutationType! node: ChatRoom updatedFields: [String!] previousValues: ChatRoomPreviousValues } input ChatRoomSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [ChatRoomSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [ChatRoomSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ChatRoomSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: ChatRoomWhereInput } input ChatRoomUpdateDataInput { name: String foo: DateTime Members: UserUpdateManyWithoutChatRoomsInput Messages: ChatMessageUpdateManyWithoutChatRoomInput CreatedBy: UserUpdateOneWithoutCreatedRoomsInput Customer: UserUpdateOneWithoutCustomerChatsInput } input ChatRoomUpdateInput { name: String Members: UserUpdateManyWithoutRoomsInput isPublic: Boolean code: ID } input ChatRoomUpdateManyInput { connect: [ChatRoomWhereUniqueInput!] disconnect: [ChatRoomWhereUniqueInput!] } input ChatRoomUpdateManyWithoutCreatedByInput { connect: [ChatRoomWhereUniqueInput!] disconnect: [ChatRoomWhereUniqueInput!] } input ChatRoomUpdateManyWithoutCustomerInput { connect: [ChatRoomWhereUniqueInput!] disconnect: [ChatRoomWhereUniqueInput!] } input ChatRoomUpdateManyWithoutMembersInput { connect: [ChatRoomWhereUniqueInput!] disconnect: [ChatRoomWhereUniqueInput!] } input ChatRoomUpdateOneInput { connect: ChatRoomWhereUniqueInput } input ChatRoomUpdateOneWithoutMessagesInput { connect: ChatRoomWhereUniqueInput disconnect: Boolean } input ChatRoomUpdateWithoutCreatedByDataInput { name: String foo: DateTime Members: UserUpdateManyWithoutChatRoomsInput Messages: ChatMessageUpdateManyWithoutChatRoomInput Customer: UserUpdateOneWithoutCustomerChatsInput } input ChatRoomUpdateWithoutCustomerDataInput { name: String foo: DateTime Members: UserUpdateManyWithoutChatRoomsInput Messages: ChatMessageUpdateManyWithoutChatRoomInput CreatedBy: UserUpdateOneWithoutCreatedRoomsInput } input ChatRoomUpdateWithoutMembersDataInput { name: String foo: DateTime Messages: ChatMessageUpdateManyWithoutChatRoomInput CreatedBy: UserUpdateOneWithoutCreatedRoomsInput Customer: UserUpdateOneWithoutCustomerChatsInput } input ChatRoomUpdateWithoutMessagesDataInput { name: String foo: DateTime Members: UserUpdateManyWithoutChatRoomsInput CreatedBy: UserUpdateOneWithoutCreatedRoomsInput Customer: UserUpdateOneWithoutCustomerChatsInput } input ChatRoomUpdateWithWhereUniqueNestedInput { where: ChatRoomWhereUniqueInput! data: ChatRoomUpdateDataInput! } input ChatRoomUpdateWithWhereUniqueWithoutCreatedByInput { where: ChatRoomWhereUniqueInput! data: ChatRoomUpdateWithoutCreatedByDataInput! } input ChatRoomUpdateWithWhereUniqueWithoutCustomerInput { where: ChatRoomWhereUniqueInput! data: ChatRoomUpdateWithoutCustomerDataInput! } input ChatRoomUpdateWithWhereUniqueWithoutMembersInput { where: ChatRoomWhereUniqueInput! data: ChatRoomUpdateWithoutMembersDataInput! } input ChatRoomUpsertWithWhereUniqueNestedInput { where: ChatRoomWhereUniqueInput! } input ChatRoomUpsertWithWhereUniqueWithoutCreatedByInput { where: ChatRoomWhereUniqueInput! } input ChatRoomUpsertWithWhereUniqueWithoutCustomerInput { where: ChatRoomWhereUniqueInput! } input ChatRoomUpsertWithWhereUniqueWithoutMembersInput { where: ChatRoomWhereUniqueInput! } input ChatRoomWhereInput { """Logical AND on all given filters.""" AND: [ChatRoomWhereInput!] """Logical OR on all given filters.""" OR: [ChatRoomWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ChatRoomWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String foo: DateTime """All values that are not equal to given value.""" foo_not: DateTime """All values that are contained in given list.""" foo_in: [DateTime!] """All values that are not contained in given list.""" foo_not_in: [DateTime!] """All values less than the given value.""" foo_lt: DateTime """All values less than or equal the given value.""" foo_lte: DateTime """All values greater than the given value.""" foo_gt: DateTime """All values greater than or equal the given value.""" foo_gte: DateTime Members_every: UserWhereInput Members_some: UserWhereInput Members_none: UserWhereInput Messages_every: ChatMessageWhereInput Messages_some: ChatMessageWhereInput Messages_none: ChatMessageWhereInput CreatedBy: UserWhereInput Customer: UserWhereInput } input ChatRoomWhereUniqueInput { id: ID } scalar DateTime type DiscountGroup implements Node { id: ID! name: String! discount: Float CreatedBy(where: UserWhereInput): User Users(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User!] } """A connection to a list of items.""" type DiscountGroupConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [DiscountGroupEdge]! aggregate: AggregateDiscountGroup! } input DiscountGroupCreateInput { name: String! discount: Float CreatedBy: UserCreateOneInput Users: UserCreateManyWithoutDiscountGroupInput } input DiscountGroupCreateOneWithoutUsersInput { connect: DiscountGroupWhereUniqueInput } input DiscountGroupCreateWithoutUsersInput { name: String! discount: Float CreatedBy: UserCreateOneInput } """An edge in a connection.""" type DiscountGroupEdge { """The item at the end of the edge.""" node: DiscountGroup! """A cursor for use in pagination.""" cursor: String! } enum DiscountGroupOrderByInput { id_ASC id_DESC name_ASC name_DESC discount_ASC discount_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } type DiscountGroupPreviousValues { id: ID! name: String! discount: Float } type DiscountGroupResponse { success: Boolean! message: String errors: [Error!]! data: DiscountGroup } type DiscountGroupSubscriptionPayload { mutation: MutationType! node: DiscountGroup updatedFields: [String!] previousValues: DiscountGroupPreviousValues } input DiscountGroupSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [DiscountGroupSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [DiscountGroupSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [DiscountGroupSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: DiscountGroupWhereInput } input DiscountGroupUpdateInput { name: String discount: Float CreatedBy: UserUpdateOneInput Users: UserUpdateManyWithoutDiscountGroupInput } input DiscountGroupUpdateOneWithoutUsersInput { connect: DiscountGroupWhereUniqueInput disconnect: Boolean } input DiscountGroupUpdateWithoutUsersDataInput { name: String discount: Float CreatedBy: UserUpdateOneInput } input DiscountGroupWhereInput { """Logical AND on all given filters.""" AND: [DiscountGroupWhereInput!] """Logical OR on all given filters.""" OR: [DiscountGroupWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [DiscountGroupWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String discount: Float """All values that are not equal to given value.""" discount_not: Float """All values that are contained in given list.""" discount_in: [Float!] """All values that are not contained in given list.""" discount_not_in: [Float!] """All values less than the given value.""" discount_lt: Float """All values less than or equal the given value.""" discount_lte: Float """All values greater than the given value.""" discount_gt: Float """All values greater than or equal the given value.""" discount_gte: Float CreatedBy: UserWhereInput Users_every: UserWhereInput Users_some: UserWhereInput Users_none: UserWhereInput } input DiscountGroupWhereUniqueInput { id: ID name: String } type Error { key: String! message: String! } type Expertise implements Node { id: ID! number: ID date: DateTime Expertiser(where: ExpertiserWhereInput): Expertiser! Exemplar(where: OrderItemWhereInput): OrderItem! image: String } """A connection to a list of items.""" type ExpertiseConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [ExpertiseEdge]! aggregate: AggregateExpertise! } input ExpertiseCreateInput { number: ID date: DateTime image: String Expertiser: ExpertiserCreateOneWithoutExpertisesInput! Exemplar: OrderItemCreateOneWithoutExpertisesInput! } input ExpertiseCreateManyWithoutExemplarInput { connect: [ExpertiseWhereUniqueInput!] } input ExpertiseCreateManyWithoutExpertiserInput { connect: [ExpertiseWhereUniqueInput!] } input ExpertiseCreateWithoutExemplarInput { number: ID date: DateTime image: String Expertiser: ExpertiserCreateOneWithoutExpertisesInput! } input ExpertiseCreateWithoutExpertiserInput { number: ID date: DateTime image: String Exemplar: OrderItemCreateOneWithoutExpertisesInput! } """An edge in a connection.""" type ExpertiseEdge { """The item at the end of the edge.""" node: Expertise! """A cursor for use in pagination.""" cursor: String! } enum ExpertiseOrderByInput { id_ASC id_DESC number_ASC number_DESC date_ASC date_DESC image_ASC image_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } type ExpertisePreviousValues { id: ID! number: ID date: DateTime image: String } type Expertiser implements Node { id: ID! name: String! shortname: String description: String rank: Int! Expertises(where: ExpertiseWhereInput, orderBy: ExpertiseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Expertise!] exported: Boolean! } """A connection to a list of items.""" type ExpertiserConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [ExpertiserEdge]! aggregate: AggregateExpertiser! } input ExpertiserCreateInput { name: String! shortname: String description: String rank: Int exported: Boolean Expertises: ExpertiseCreateManyWithoutExpertiserInput } input ExpertiserCreateOneWithoutExpertisesInput { connect: ExpertiserWhereUniqueInput } input ExpertiserCreateWithoutExpertisesInput { name: String! shortname: String description: String rank: Int exported: Boolean } """An edge in a connection.""" type ExpertiserEdge { """The item at the end of the edge.""" node: Expertiser! """A cursor for use in pagination.""" cursor: String! } type ExpertiseResponse { success: Boolean! message: String errors: [Error!]! data: Expertise } enum ExpertiserOrderByInput { id_ASC id_DESC name_ASC name_DESC shortname_ASC shortname_DESC description_ASC description_DESC rank_ASC rank_DESC exported_ASC exported_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } type ExpertiserPreviousValues { id: ID! name: String! shortname: String description: String rank: Int! exported: Boolean! } type ExpertiserResponse { success: Boolean! message: String errors: [Error!]! data: Expertiser } type ExpertiserSubscriptionPayload { mutation: MutationType! node: Expertiser updatedFields: [String!] previousValues: ExpertiserPreviousValues } input ExpertiserSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [ExpertiserSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [ExpertiserSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ExpertiserSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: ExpertiserWhereInput } input ExpertiserUpdateInput { name: String shortname: String description: String rank: Int exported: Boolean Expertises: ExpertiseUpdateManyWithoutExpertiserInput } input ExpertiserUpdateOneWithoutExpertisesInput { connect: ExpertiserWhereUniqueInput } input ExpertiserUpdateWithoutExpertisesDataInput { name: String shortname: String description: String rank: Int exported: Boolean } input ExpertiserWhereInput { """Logical AND on all given filters.""" AND: [ExpertiserWhereInput!] """Logical OR on all given filters.""" OR: [ExpertiserWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ExpertiserWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String shortname: String """All values that are not equal to given value.""" shortname_not: String """All values that are contained in given list.""" shortname_in: [String!] """All values that are not contained in given list.""" shortname_not_in: [String!] """All values less than the given value.""" shortname_lt: String """All values less than or equal the given value.""" shortname_lte: String """All values greater than the given value.""" shortname_gt: String """All values greater than or equal the given value.""" shortname_gte: String """All values containing the given string.""" shortname_contains: String """All values not containing the given string.""" shortname_not_contains: String """All values starting with the given string.""" shortname_starts_with: String """All values not starting with the given string.""" shortname_not_starts_with: String """All values ending with the given string.""" shortname_ends_with: String """All values not ending with the given string.""" shortname_not_ends_with: String description: String """All values that are not equal to given value.""" description_not: String """All values that are contained in given list.""" description_in: [String!] """All values that are not contained in given list.""" description_not_in: [String!] """All values less than the given value.""" description_lt: String """All values less than or equal the given value.""" description_lte: String """All values greater than the given value.""" description_gt: String """All values greater than or equal the given value.""" description_gte: String """All values containing the given string.""" description_contains: String """All values not containing the given string.""" description_not_contains: String """All values starting with the given string.""" description_starts_with: String """All values not starting with the given string.""" description_not_starts_with: String """All values ending with the given string.""" description_ends_with: String """All values not ending with the given string.""" description_not_ends_with: String rank: Int """All values that are not equal to given value.""" rank_not: Int """All values that are contained in given list.""" rank_in: [Int!] """All values that are not contained in given list.""" rank_not_in: [Int!] """All values less than the given value.""" rank_lt: Int """All values less than or equal the given value.""" rank_lte: Int """All values greater than the given value.""" rank_gt: Int """All values greater than or equal the given value.""" rank_gte: Int exported: Boolean """All values that are not equal to given value.""" exported_not: Boolean Expertises_every: ExpertiseWhereInput Expertises_some: ExpertiseWhereInput Expertises_none: ExpertiseWhereInput } input ExpertiserWhereUniqueInput { id: ID name: String } type ExpertiseSubscriptionPayload { mutation: MutationType! node: Expertise updatedFields: [String!] previousValues: ExpertisePreviousValues } input ExpertiseSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [ExpertiseSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [ExpertiseSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ExpertiseSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: ExpertiseWhereInput } input ExpertiseUpdateInput { number: ID date: DateTime image: String Expertiser: ExpertiserUpdateOneWithoutExpertisesInput Exemplar: OrderItemUpdateOneWithoutExpertisesInput } input ExpertiseUpdateManyWithoutExemplarInput { connect: [ExpertiseWhereUniqueInput!] disconnect: [ExpertiseWhereUniqueInput!] } input ExpertiseUpdateManyWithoutExpertiserInput { connect: [ExpertiseWhereUniqueInput!] disconnect: [ExpertiseWhereUniqueInput!] } input ExpertiseUpdateWithoutExemplarDataInput { number: ID date: DateTime image: String Expertiser: ExpertiserUpdateOneWithoutExpertisesInput } input ExpertiseUpdateWithoutExpertiserDataInput { number: ID date: DateTime image: String Exemplar: OrderItemUpdateOneWithoutExpertisesInput } input ExpertiseUpdateWithWhereUniqueWithoutExemplarInput { where: ExpertiseWhereUniqueInput! data: ExpertiseUpdateWithoutExemplarDataInput! } input ExpertiseUpdateWithWhereUniqueWithoutExpertiserInput { where: ExpertiseWhereUniqueInput! data: ExpertiseUpdateWithoutExpertiserDataInput! } input ExpertiseUpsertWithWhereUniqueWithoutExemplarInput { where: ExpertiseWhereUniqueInput! } input ExpertiseUpsertWithWhereUniqueWithoutExpertiserInput { where: ExpertiseWhereUniqueInput! } input ExpertiseWhereInput { """Logical AND on all given filters.""" AND: [ExpertiseWhereInput!] """Logical OR on all given filters.""" OR: [ExpertiseWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ExpertiseWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID number: ID """All values that are not equal to given value.""" number_not: ID """All values that are contained in given list.""" number_in: [ID!] """All values that are not contained in given list.""" number_not_in: [ID!] """All values less than the given value.""" number_lt: ID """All values less than or equal the given value.""" number_lte: ID """All values greater than the given value.""" number_gt: ID """All values greater than or equal the given value.""" number_gte: ID """All values containing the given string.""" number_contains: ID """All values not containing the given string.""" number_not_contains: ID """All values starting with the given string.""" number_starts_with: ID """All values not starting with the given string.""" number_not_starts_with: ID """All values ending with the given string.""" number_ends_with: ID """All values not ending with the given string.""" number_not_ends_with: ID date: DateTime """All values that are not equal to given value.""" date_not: DateTime """All values that are contained in given list.""" date_in: [DateTime!] """All values that are not contained in given list.""" date_not_in: [DateTime!] """All values less than the given value.""" date_lt: DateTime """All values less than or equal the given value.""" date_lte: DateTime """All values greater than the given value.""" date_gt: DateTime """All values greater than or equal the given value.""" date_gte: DateTime image: String """All values that are not equal to given value.""" image_not: String """All values that are contained in given list.""" image_in: [String!] """All values that are not contained in given list.""" image_not_in: [String!] """All values less than the given value.""" image_lt: String """All values less than or equal the given value.""" image_lte: String """All values greater than the given value.""" image_gt: String """All values greater than or equal the given value.""" image_gte: String """All values containing the given string.""" image_contains: String """All values not containing the given string.""" image_not_contains: String """All values starting with the given string.""" image_starts_with: String """All values not starting with the given string.""" image_not_starts_with: String """All values ending with the given string.""" image_ends_with: String """All values not ending with the given string.""" image_not_ends_with: String Expertiser: ExpertiserWhereInput Exemplar: OrderItemWhereInput } input ExpertiseWhereUniqueInput { id: ID } type File implements Node { id: ID! path: String! name: String filename: String mimetype: String! encoding: String! hash: String size: Float CreatedBy(where: UserWhereInput): User! ImageResource(where: ResourceWhereInput): Resource } """A connection to a list of items.""" type FileConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [FileEdge]! aggregate: AggregateFile! } input FileCreateInput { path: String! name: String filename: String mimetype: String! encoding: String! hash: String size: Float CreatedBy: UserCreateOneWithoutFilesInput! ImageResource: ResourceCreateOneWithoutImageInput } input FileCreateManyWithoutCreatedByInput { connect: [FileWhereUniqueInput!] } input FileCreateOneWithoutImageResourceInput { connect: FileWhereUniqueInput } input FileCreateWithoutCreatedByInput { path: String! name: String filename: String mimetype: String! encoding: String! hash: String size: Float ImageResource: ResourceCreateOneWithoutImageInput } input FileCreateWithoutImageResourceInput { path: String! name: String filename: String mimetype: String! encoding: String! hash: String size: Float CreatedBy: UserCreateOneWithoutFilesInput! } """An edge in a connection.""" type FileEdge { """The item at the end of the edge.""" node: File! """A cursor for use in pagination.""" cursor: String! } enum FileOrderByInput { id_ASC id_DESC path_ASC path_DESC name_ASC name_DESC filename_ASC filename_DESC mimetype_ASC mimetype_DESC encoding_ASC encoding_DESC hash_ASC hash_DESC size_ASC size_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } type FilePreviousValues { id: ID! path: String! name: String filename: String mimetype: String! encoding: String! hash: String size: Float } type FileSubscriptionPayload { mutation: MutationType! node: File updatedFields: [String!] previousValues: FilePreviousValues } input FileSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [FileSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [FileSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [FileSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: FileWhereInput } input FileUpdateInput { path: String name: String filename: String mimetype: String encoding: String hash: String size: Float CreatedBy: UserUpdateOneWithoutFilesInput ImageResource: ResourceUpdateOneWithoutImageInput } input FileUpdateManyWithoutCreatedByInput { connect: [FileWhereUniqueInput!] disconnect: [FileWhereUniqueInput!] } input FileUpdateOneWithoutImageResourceInput { connect: FileWhereUniqueInput disconnect: Boolean } input FileUpdateWithoutCreatedByDataInput { path: String name: String filename: String mimetype: String encoding: String hash: String size: Float ImageResource: ResourceUpdateOneWithoutImageInput } input FileUpdateWithoutImageResourceDataInput { path: String name: String filename: String mimetype: String encoding: String hash: String size: Float CreatedBy: UserUpdateOneWithoutFilesInput } input FileUpdateWithWhereUniqueWithoutCreatedByInput { where: FileWhereUniqueInput! data: FileUpdateWithoutCreatedByDataInput! } input FileUpsertWithWhereUniqueWithoutCreatedByInput { where: FileWhereUniqueInput! } input FileWhereInput { """Logical AND on all given filters.""" AND: [FileWhereInput!] """Logical OR on all given filters.""" OR: [FileWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [FileWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID path: String """All values that are not equal to given value.""" path_not: String """All values that are contained in given list.""" path_in: [String!] """All values that are not contained in given list.""" path_not_in: [String!] """All values less than the given value.""" path_lt: String """All values less than or equal the given value.""" path_lte: String """All values greater than the given value.""" path_gt: String """All values greater than or equal the given value.""" path_gte: String """All values containing the given string.""" path_contains: String """All values not containing the given string.""" path_not_contains: String """All values starting with the given string.""" path_starts_with: String """All values not starting with the given string.""" path_not_starts_with: String """All values ending with the given string.""" path_ends_with: String """All values not ending with the given string.""" path_not_ends_with: String name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String filename: String """All values that are not equal to given value.""" filename_not: String """All values that are contained in given list.""" filename_in: [String!] """All values that are not contained in given list.""" filename_not_in: [String!] """All values less than the given value.""" filename_lt: String """All values less than or equal the given value.""" filename_lte: String """All values greater than the given value.""" filename_gt: String """All values greater than or equal the given value.""" filename_gte: String """All values containing the given string.""" filename_contains: String """All values not containing the given string.""" filename_not_contains: String """All values starting with the given string.""" filename_starts_with: String """All values not starting with the given string.""" filename_not_starts_with: String """All values ending with the given string.""" filename_ends_with: String """All values not ending with the given string.""" filename_not_ends_with: String mimetype: String """All values that are not equal to given value.""" mimetype_not: String """All values that are contained in given list.""" mimetype_in: [String!] """All values that are not contained in given list.""" mimetype_not_in: [String!] """All values less than the given value.""" mimetype_lt: String """All values less than or equal the given value.""" mimetype_lte: String """All values greater than the given value.""" mimetype_gt: String """All values greater than or equal the given value.""" mimetype_gte: String """All values containing the given string.""" mimetype_contains: String """All values not containing the given string.""" mimetype_not_contains: String """All values starting with the given string.""" mimetype_starts_with: String """All values not starting with the given string.""" mimetype_not_starts_with: String """All values ending with the given string.""" mimetype_ends_with: String """All values not ending with the given string.""" mimetype_not_ends_with: String encoding: String """All values that are not equal to given value.""" encoding_not: String """All values that are contained in given list.""" encoding_in: [String!] """All values that are not contained in given list.""" encoding_not_in: [String!] """All values less than the given value.""" encoding_lt: String """All values less than or equal the given value.""" encoding_lte: String """All values greater than the given value.""" encoding_gt: String """All values greater than or equal the given value.""" encoding_gte: String """All values containing the given string.""" encoding_contains: String """All values not containing the given string.""" encoding_not_contains: String """All values starting with the given string.""" encoding_starts_with: String """All values not starting with the given string.""" encoding_not_starts_with: String """All values ending with the given string.""" encoding_ends_with: String """All values not ending with the given string.""" encoding_not_ends_with: String hash: String """All values that are not equal to given value.""" hash_not: String """All values that are contained in given list.""" hash_in: [String!] """All values that are not contained in given list.""" hash_not_in: [String!] """All values less than the given value.""" hash_lt: String """All values less than or equal the given value.""" hash_lte: String """All values greater than the given value.""" hash_gt: String """All values greater than or equal the given value.""" hash_gte: String """All values containing the given string.""" hash_contains: String """All values not containing the given string.""" hash_not_contains: String """All values starting with the given string.""" hash_starts_with: String """All values not starting with the given string.""" hash_not_starts_with: String """All values ending with the given string.""" hash_ends_with: String """All values not ending with the given string.""" hash_not_ends_with: String size: Float """All values that are not equal to given value.""" size_not: Float """All values that are contained in given list.""" size_in: [Float!] """All values that are not contained in given list.""" size_not_in: [Float!] """All values less than the given value.""" size_lt: Float """All values less than or equal the given value.""" size_lte: Float """All values greater than the given value.""" size_gt: Float """All values greater than or equal the given value.""" size_gte: Float CreatedBy: UserWhereInput ImageResource: ResourceWhereInput } input FileWhereUniqueInput { id: ID } type Game implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! name: String start_date: DateTime end_date: DateTime sequence: Int CreatedBy(where: UserWhereInput): User Tourney(where: TourneyWhereInput): Tourney Users(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User!] Teams(where: TeamWhereInput, orderBy: TeamOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Team!] Parent(where: GameWhereInput): Game Childs(where: GameWhereInput, orderBy: GameOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Game!] Results(where: GameResultWhereInput, orderBy: GameResultOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [GameResult!] } """A connection to a list of items.""" type GameConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [GameEdge]! aggregate: AggregateGame! } input GameCreateInput { name: String start_date: DateTime end_date: DateTime sequence: Int CreatedBy: UserCreateOneInput Tourney: TourneyCreateOneWithoutGamesInput Users: UserCreateManyInput Teams: TeamCreateManyInput Parent: GameCreateOneWithoutChildsInput Childs: GameCreateManyWithoutParentInput Results: GameResultCreateManyWithoutGameInput } input GameCreateManyWithoutParentInput { connect: [GameWhereUniqueInput!] } input GameCreateManyWithoutTourneyInput { connect: [GameWhereUniqueInput!] } input GameCreateOneWithoutChildsInput { connect: GameWhereUniqueInput } input GameCreateOneWithoutResultsInput { connect: GameWhereUniqueInput } input GameCreateWithoutChildsInput { name: String start_date: DateTime end_date: DateTime sequence: Int CreatedBy: UserCreateOneInput Tourney: TourneyCreateOneWithoutGamesInput Users: UserCreateManyInput Teams: TeamCreateManyInput Parent: GameCreateOneWithoutChildsInput Results: GameResultCreateManyWithoutGameInput } input GameCreateWithoutParentInput { name: String start_date: DateTime end_date: DateTime sequence: Int CreatedBy: UserCreateOneInput Tourney: TourneyCreateOneWithoutGamesInput Users: UserCreateManyInput Teams: TeamCreateManyInput Childs: GameCreateManyWithoutParentInput Results: GameResultCreateManyWithoutGameInput } input GameCreateWithoutResultsInput { name: String start_date: DateTime end_date: DateTime sequence: Int CreatedBy: UserCreateOneInput Tourney: TourneyCreateOneWithoutGamesInput Users: UserCreateManyInput Teams: TeamCreateManyInput Parent: GameCreateOneWithoutChildsInput Childs: GameCreateManyWithoutParentInput } input GameCreateWithoutTourneyInput { name: String start_date: DateTime end_date: DateTime sequence: Int CreatedBy: UserCreateOneInput Users: UserCreateManyInput Teams: TeamCreateManyInput Parent: GameCreateOneWithoutChildsInput Childs: GameCreateManyWithoutParentInput Results: GameResultCreateManyWithoutGameInput } """An edge in a connection.""" type GameEdge { """The item at the end of the edge.""" node: Game! """A cursor for use in pagination.""" cursor: String! } enum GameOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC name_ASC name_DESC start_date_ASC start_date_DESC end_date_ASC end_date_DESC sequence_ASC sequence_DESC } type GamePreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! name: String start_date: DateTime end_date: DateTime sequence: Int } type GameResponse { success: Boolean! message: String! errors: [Error!]! data: Game } type GameResult implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! date: DateTime name: String CreatedBy(where: UserWhereInput): User User(where: UserWhereInput): User Team(where: TeamWhereInput): Team Game(where: GameWhereInput): Game! value: Float } """A connection to a list of items.""" type GameResultConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [GameResultEdge]! aggregate: AggregateGameResult! } input GameResultCreateInput { date: DateTime name: String value: Float CreatedBy: UserCreateOneInput User: UserCreateOneInput Team: TeamCreateOneInput Game: GameCreateOneWithoutResultsInput! } input GameResultCreateManyWithoutGameInput { connect: [GameResultWhereUniqueInput!] } input GameResultCreateWithoutGameInput { date: DateTime name: String value: Float CreatedBy: UserCreateOneInput User: UserCreateOneInput Team: TeamCreateOneInput } """An edge in a connection.""" type GameResultEdge { """The item at the end of the edge.""" node: GameResult! """A cursor for use in pagination.""" cursor: String! } enum GameResultOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC date_ASC date_DESC name_ASC name_DESC value_ASC value_DESC } type GameResultPreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! date: DateTime name: String value: Float } type GameResultResponse { success: Boolean! message: String! errors: [Error!]! data: GameResult } type GameResultSubscriptionPayload { mutation: MutationType! node: GameResult updatedFields: [String!] previousValues: GameResultPreviousValues } input GameResultSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [GameResultSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [GameResultSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [GameResultSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: GameResultWhereInput } input GameResultUpdateInput { date: DateTime name: String value: Float CreatedBy: UserUpdateOneInput User: UserUpdateOneInput Team: TeamUpdateOneInput Game: GameUpdateOneWithoutResultsInput } input GameResultUpdateManyWithoutGameInput { connect: [GameResultWhereUniqueInput!] disconnect: [GameResultWhereUniqueInput!] } input GameResultUpdateWithoutGameDataInput { date: DateTime name: String value: Float CreatedBy: UserUpdateOneInput User: UserUpdateOneInput Team: TeamUpdateOneInput } input GameResultUpdateWithWhereUniqueWithoutGameInput { where: GameResultWhereUniqueInput! data: GameResultUpdateWithoutGameDataInput! } input GameResultUpsertWithWhereUniqueWithoutGameInput { where: GameResultWhereUniqueInput! } input GameResultWhereInput { """Logical AND on all given filters.""" AND: [GameResultWhereInput!] """Logical OR on all given filters.""" OR: [GameResultWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [GameResultWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime date: DateTime """All values that are not equal to given value.""" date_not: DateTime """All values that are contained in given list.""" date_in: [DateTime!] """All values that are not contained in given list.""" date_not_in: [DateTime!] """All values less than the given value.""" date_lt: DateTime """All values less than or equal the given value.""" date_lte: DateTime """All values greater than the given value.""" date_gt: DateTime """All values greater than or equal the given value.""" date_gte: DateTime name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String value: Float """All values that are not equal to given value.""" value_not: Float """All values that are contained in given list.""" value_in: [Float!] """All values that are not contained in given list.""" value_not_in: [Float!] """All values less than the given value.""" value_lt: Float """All values less than or equal the given value.""" value_lte: Float """All values greater than the given value.""" value_gt: Float """All values greater than or equal the given value.""" value_gte: Float CreatedBy: UserWhereInput User: UserWhereInput Team: TeamWhereInput Game: GameWhereInput } input GameResultWhereUniqueInput { id: ID } type GameSubscriptionPayload { mutation: MutationType! node: Game updatedFields: [String!] previousValues: GamePreviousValues } input GameSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [GameSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [GameSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [GameSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: GameWhereInput } input GameUpdateInput { name: String start_date: DateTime end_date: DateTime sequence: Int CreatedBy: UserUpdateOneInput Tourney: TourneyUpdateOneWithoutGamesInput Users: UserUpdateManyInput Teams: TeamUpdateManyInput Parent: GameUpdateOneWithoutChildsInput Childs: GameUpdateManyWithoutParentInput Results: GameResultUpdateManyWithoutGameInput } input GameUpdateManyWithoutParentInput { connect: [GameWhereUniqueInput!] disconnect: [GameWhereUniqueInput!] } input GameUpdateManyWithoutTourneyInput { connect: [GameWhereUniqueInput!] disconnect: [GameWhereUniqueInput!] } input GameUpdateOneWithoutChildsInput { connect: GameWhereUniqueInput disconnect: Boolean } input GameUpdateOneWithoutResultsInput { connect: GameWhereUniqueInput } input GameUpdateWithoutChildsDataInput { name: String start_date: DateTime end_date: DateTime sequence: Int CreatedBy: UserUpdateOneInput Tourney: TourneyUpdateOneWithoutGamesInput Users: UserUpdateManyInput Teams: TeamUpdateManyInput Parent: GameUpdateOneWithoutChildsInput Results: GameResultUpdateManyWithoutGameInput } input GameUpdateWithoutParentDataInput { name: String start_date: DateTime end_date: DateTime sequence: Int CreatedBy: UserUpdateOneInput Tourney: TourneyUpdateOneWithoutGamesInput Users: UserUpdateManyInput Teams: TeamUpdateManyInput Childs: GameUpdateManyWithoutParentInput Results: GameResultUpdateManyWithoutGameInput } input GameUpdateWithoutResultsDataInput { name: String start_date: DateTime end_date: DateTime sequence: Int CreatedBy: UserUpdateOneInput Tourney: TourneyUpdateOneWithoutGamesInput Users: UserUpdateManyInput Teams: TeamUpdateManyInput Parent: GameUpdateOneWithoutChildsInput Childs: GameUpdateManyWithoutParentInput } input GameUpdateWithoutTourneyDataInput { name: String start_date: DateTime end_date: DateTime sequence: Int CreatedBy: UserUpdateOneInput Users: UserUpdateManyInput Teams: TeamUpdateManyInput Parent: GameUpdateOneWithoutChildsInput Childs: GameUpdateManyWithoutParentInput Results: GameResultUpdateManyWithoutGameInput } input GameUpdateWithWhereUniqueWithoutParentInput { where: GameWhereUniqueInput! data: GameUpdateWithoutParentDataInput! } input GameUpdateWithWhereUniqueWithoutTourneyInput { where: GameWhereUniqueInput! data: GameUpdateWithoutTourneyDataInput! } input GameUpsertWithWhereUniqueWithoutParentInput { where: GameWhereUniqueInput! } input GameUpsertWithWhereUniqueWithoutTourneyInput { where: GameWhereUniqueInput! } input GameWhereInput { """Logical AND on all given filters.""" AND: [GameWhereInput!] """Logical OR on all given filters.""" OR: [GameWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [GameWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String start_date: DateTime """All values that are not equal to given value.""" start_date_not: DateTime """All values that are contained in given list.""" start_date_in: [DateTime!] """All values that are not contained in given list.""" start_date_not_in: [DateTime!] """All values less than the given value.""" start_date_lt: DateTime """All values less than or equal the given value.""" start_date_lte: DateTime """All values greater than the given value.""" start_date_gt: DateTime """All values greater than or equal the given value.""" start_date_gte: DateTime end_date: DateTime """All values that are not equal to given value.""" end_date_not: DateTime """All values that are contained in given list.""" end_date_in: [DateTime!] """All values that are not contained in given list.""" end_date_not_in: [DateTime!] """All values less than the given value.""" end_date_lt: DateTime """All values less than or equal the given value.""" end_date_lte: DateTime """All values greater than the given value.""" end_date_gt: DateTime """All values greater than or equal the given value.""" end_date_gte: DateTime sequence: Int """All values that are not equal to given value.""" sequence_not: Int """All values that are contained in given list.""" sequence_in: [Int!] """All values that are not contained in given list.""" sequence_not_in: [Int!] """All values less than the given value.""" sequence_lt: Int """All values less than or equal the given value.""" sequence_lte: Int """All values greater than the given value.""" sequence_gt: Int """All values greater than or equal the given value.""" sequence_gte: Int CreatedBy: UserWhereInput Tourney: TourneyWhereInput Users_every: UserWhereInput Users_some: UserWhereInput Users_none: UserWhereInput Teams_every: TeamWhereInput Teams_some: TeamWhereInput Teams_none: TeamWhereInput Parent: GameWhereInput Childs_every: GameWhereInput Childs_some: GameWhereInput Childs_none: GameWhereInput Results_every: GameResultWhereInput Results_some: GameResultWhereInput Results_none: GameResultWhereInput } input GameWhereUniqueInput { id: ID } type Invoice implements Node { id: ID! name: String createdAt: DateTime! updatedAt: DateTime! Items(where: InvoiceItemWhereInput, orderBy: InvoiceItemOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [InvoiceItem!] CreatedBy(where: UserWhereInput): User sequence: Int Order(where: OrderWhereInput): Order status: InvoiceStatus } """A connection to a list of items.""" type InvoiceConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [InvoiceEdge]! aggregate: AggregateInvoice! } input InvoiceCreateInput { name: String sequence: Int status: InvoiceStatus Items: InvoiceItemCreateManyWithoutInvoiceInput CreatedBy: UserCreateOneInput Order: OrderCreateOneWithoutInvoiceInput } input InvoiceCreateOneWithoutItemsInput { connect: InvoiceWhereUniqueInput } input InvoiceCreateOneWithoutOrderInput { connect: InvoiceWhereUniqueInput } input InvoiceCreateWithoutItemsInput { name: String sequence: Int status: InvoiceStatus CreatedBy: UserCreateOneInput Order: OrderCreateOneWithoutInvoiceInput } input InvoiceCreateWithoutOrderInput { name: String sequence: Int status: InvoiceStatus Items: InvoiceItemCreateManyWithoutInvoiceInput CreatedBy: UserCreateOneInput } """An edge in a connection.""" type InvoiceEdge { """The item at the end of the edge.""" node: Invoice! """A cursor for use in pagination.""" cursor: String! } type InvoiceItem implements Node { id: ID! name: String createdAt: DateTime! updatedAt: DateTime! units: String quantity: Float cost: Float Invoice(where: InvoiceWhereInput): Invoice CreatedBy(where: UserWhereInput): User OrderItem(where: OrderItemWhereInput): OrderItem } """A connection to a list of items.""" type InvoiceItemConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [InvoiceItemEdge]! aggregate: AggregateInvoiceItem! } input InvoiceItemCreateInput { name: String units: String quantity: Float cost: Float Invoice: InvoiceCreateOneWithoutItemsInput CreatedBy: UserCreateOneInput OrderItem: OrderItemCreateOneWithoutInvoiceItemsInput } input InvoiceItemCreateManyWithoutInvoiceInput { create: [InvoiceItemCreateWithoutInvoiceInput!] connect: [InvoiceItemWhereUniqueInput!] } input InvoiceItemCreateManyWithoutOrderItemInput { connect: [InvoiceItemWhereUniqueInput!] } input InvoiceItemCreateWithoutInvoiceInput { name: String units: String quantity: Float cost: Float CreatedBy: UserCreateOneInput OrderItem: OrderItemCreateOneWithoutInvoiceItemsInput } input InvoiceItemCreateWithoutOrderItemInput { name: String units: String quantity: Float cost: Float Invoice: InvoiceCreateOneWithoutItemsInput CreatedBy: UserCreateOneInput } """An edge in a connection.""" type InvoiceItemEdge { """The item at the end of the edge.""" node: InvoiceItem! """A cursor for use in pagination.""" cursor: String! } enum InvoiceItemOrderByInput { id_ASC id_DESC name_ASC name_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC units_ASC units_DESC quantity_ASC quantity_DESC cost_ASC cost_DESC } type InvoiceItemPreviousValues { id: ID! name: String createdAt: DateTime! updatedAt: DateTime! units: String quantity: Float cost: Float } type InvoiceItemResponse { success: Boolean! message: String errors: [Error!]! data: InvoiceItem } type InvoiceItemSubscriptionPayload { mutation: MutationType! node: InvoiceItem updatedFields: [String!] previousValues: InvoiceItemPreviousValues } input InvoiceItemSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [InvoiceItemSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [InvoiceItemSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [InvoiceItemSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: InvoiceItemWhereInput } input InvoiceItemUpdateInput { name: String units: String quantity: Float cost: Float Invoice: InvoiceUpdateOneWithoutItemsInput CreatedBy: UserUpdateOneInput OrderItem: OrderItemUpdateOneWithoutInvoiceItemsInput } input InvoiceItemUpdateManyWithoutInvoiceInput { connect: [InvoiceItemWhereUniqueInput!] disconnect: [InvoiceItemWhereUniqueInput!] } input InvoiceItemUpdateManyWithoutOrderItemInput { connect: [InvoiceItemWhereUniqueInput!] disconnect: [InvoiceItemWhereUniqueInput!] } input InvoiceItemUpdateWithoutInvoiceDataInput { name: String units: String quantity: Float cost: Float CreatedBy: UserUpdateOneInput OrderItem: OrderItemUpdateOneWithoutInvoiceItemsInput } input InvoiceItemUpdateWithoutOrderItemDataInput { name: String units: String quantity: Float cost: Float Invoice: InvoiceUpdateOneWithoutItemsInput CreatedBy: UserUpdateOneInput } input InvoiceItemUpdateWithWhereUniqueWithoutInvoiceInput { where: InvoiceItemWhereUniqueInput! data: InvoiceItemUpdateWithoutInvoiceDataInput! } input InvoiceItemUpdateWithWhereUniqueWithoutOrderItemInput { where: InvoiceItemWhereUniqueInput! data: InvoiceItemUpdateWithoutOrderItemDataInput! } input InvoiceItemUpsertWithWhereUniqueWithoutInvoiceInput { where: InvoiceItemWhereUniqueInput! } input InvoiceItemUpsertWithWhereUniqueWithoutOrderItemInput { where: InvoiceItemWhereUniqueInput! } input InvoiceItemWhereInput { """Logical AND on all given filters.""" AND: [InvoiceItemWhereInput!] """Logical OR on all given filters.""" OR: [InvoiceItemWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [InvoiceItemWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime units: String """All values that are not equal to given value.""" units_not: String """All values that are contained in given list.""" units_in: [String!] """All values that are not contained in given list.""" units_not_in: [String!] """All values less than the given value.""" units_lt: String """All values less than or equal the given value.""" units_lte: String """All values greater than the given value.""" units_gt: String """All values greater than or equal the given value.""" units_gte: String """All values containing the given string.""" units_contains: String """All values not containing the given string.""" units_not_contains: String """All values starting with the given string.""" units_starts_with: String """All values not starting with the given string.""" units_not_starts_with: String """All values ending with the given string.""" units_ends_with: String """All values not ending with the given string.""" units_not_ends_with: String quantity: Float """All values that are not equal to given value.""" quantity_not: Float """All values that are contained in given list.""" quantity_in: [Float!] """All values that are not contained in given list.""" quantity_not_in: [Float!] """All values less than the given value.""" quantity_lt: Float """All values less than or equal the given value.""" quantity_lte: Float """All values greater than the given value.""" quantity_gt: Float """All values greater than or equal the given value.""" quantity_gte: Float cost: Float """All values that are not equal to given value.""" cost_not: Float """All values that are contained in given list.""" cost_in: [Float!] """All values that are not contained in given list.""" cost_not_in: [Float!] """All values less than the given value.""" cost_lt: Float """All values less than or equal the given value.""" cost_lte: Float """All values greater than the given value.""" cost_gt: Float """All values greater than or equal the given value.""" cost_gte: Float Invoice: InvoiceWhereInput CreatedBy: UserWhereInput OrderItem: OrderItemWhereInput } input InvoiceItemWhereUniqueInput { id: ID } enum InvoiceOrderByInput { id_ASC id_DESC name_ASC name_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC sequence_ASC sequence_DESC status_ASC status_DESC } type InvoicePreviousValues { id: ID! name: String createdAt: DateTime! updatedAt: DateTime! sequence: Int status: InvoiceStatus } type InvoiceResponse { success: Boolean! message: String errors: [Error!]! data: Invoice } enum InvoiceStatus { New Closed } type InvoiceSubscriptionPayload { mutation: MutationType! node: Invoice updatedFields: [String!] previousValues: InvoicePreviousValues } input InvoiceSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [InvoiceSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [InvoiceSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [InvoiceSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: InvoiceWhereInput } input InvoiceUpdateInput { name: String sequence: Int status: InvoiceStatus Items: InvoiceItemUpdateManyWithoutInvoiceInput CreatedBy: UserUpdateOneInput Order: OrderUpdateOneWithoutInvoiceInput } input InvoiceUpdateOneWithoutItemsInput { connect: InvoiceWhereUniqueInput disconnect: Boolean } input InvoiceUpdateOneWithoutOrderInput { connect: InvoiceWhereUniqueInput disconnect: Boolean } input InvoiceUpdateWithoutItemsDataInput { name: String sequence: Int status: InvoiceStatus CreatedBy: UserUpdateOneInput Order: OrderUpdateOneWithoutInvoiceInput } input InvoiceUpdateWithoutOrderDataInput { name: String sequence: Int status: InvoiceStatus Items: InvoiceItemUpdateManyWithoutInvoiceInput CreatedBy: UserUpdateOneInput } input InvoiceWhereInput { """Logical AND on all given filters.""" AND: [InvoiceWhereInput!] """Logical OR on all given filters.""" OR: [InvoiceWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [InvoiceWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime sequence: Int """All values that are not equal to given value.""" sequence_not: Int """All values that are contained in given list.""" sequence_in: [Int!] """All values that are not contained in given list.""" sequence_not_in: [Int!] """All values less than the given value.""" sequence_lt: Int """All values less than or equal the given value.""" sequence_lte: Int """All values greater than the given value.""" sequence_gt: Int """All values greater than or equal the given value.""" sequence_gte: Int status: InvoiceStatus """All values that are not equal to given value.""" status_not: InvoiceStatus """All values that are contained in given list.""" status_in: [InvoiceStatus!] """All values that are not contained in given list.""" status_not_in: [InvoiceStatus!] Items_every: InvoiceItemWhereInput Items_some: InvoiceItemWhereInput Items_none: InvoiceItemWhereInput CreatedBy: UserWhereInput Order: OrderWhereInput } input InvoiceWhereUniqueInput { id: ID sequence: Int } """Raw JSON value""" scalar Json type LetsadsSmsMessageStatus implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! name: LetsadsSmsMessageStatusEnum description: String errorCode: LetsadsSmsMessageStatusErrorCodeEnum SmsMessage(where: SmsMessageWhereInput): SmsMessage! Items(where: LetsadsSmsMessageStatusItemWhereInput, orderBy: LetsadsSmsMessageStatusItemOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [LetsadsSmsMessageStatusItem!] } """A connection to a list of items.""" type LetsadsSmsMessageStatusConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [LetsadsSmsMessageStatusEdge]! aggregate: AggregateLetsadsSmsMessageStatus! } input LetsadsSmsMessageStatusCreateInput { name: LetsadsSmsMessageStatusEnum description: String errorCode: LetsadsSmsMessageStatusErrorCodeEnum SmsMessage: SmsMessageCreateOneWithoutStatusInput! Items: LetsadsSmsMessageStatusItemCreateManyInput } input LetsadsSmsMessageStatusCreateOneWithoutSmsMessageInput { connect: LetsadsSmsMessageStatusWhereUniqueInput } input LetsadsSmsMessageStatusCreateWithoutSmsMessageInput { name: LetsadsSmsMessageStatusEnum description: String errorCode: LetsadsSmsMessageStatusErrorCodeEnum Items: LetsadsSmsMessageStatusItemCreateManyInput } """An edge in a connection.""" type LetsadsSmsMessageStatusEdge { """The item at the end of the edge.""" node: LetsadsSmsMessageStatus! """A cursor for use in pagination.""" cursor: String! } enum LetsadsSmsMessageStatusEnum { Complete Error } enum LetsadsSmsMessageStatusErrorCodeEnum { NO_DATA WRONG_DATA_FORMAT REQUEST_FORMAT AUTH_DATA API_DISABLED USER_NOT_MODERATED INCORRECT_FROM INVALID_FROM MESSAGE_TOO_LONG NO_MESSAGE MAX_MESSAGES_COUNT NOT_ENOUGH_MONEY UNKNOWN_ERROR } type LetsadsSmsMessageStatusItem implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! sms_id: Int! } """A connection to a list of items.""" type LetsadsSmsMessageStatusItemConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [LetsadsSmsMessageStatusItemEdge]! aggregate: AggregateLetsadsSmsMessageStatusItem! } input LetsadsSmsMessageStatusItemCreateInput { sms_id: Int! } input LetsadsSmsMessageStatusItemCreateManyInput { connect: [LetsadsSmsMessageStatusItemWhereUniqueInput!] } """An edge in a connection.""" type LetsadsSmsMessageStatusItemEdge { """The item at the end of the edge.""" node: LetsadsSmsMessageStatusItem! """A cursor for use in pagination.""" cursor: String! } enum LetsadsSmsMessageStatusItemOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC sms_id_ASC sms_id_DESC } type LetsadsSmsMessageStatusItemPreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! sms_id: Int! } type LetsadsSmsMessageStatusItemSubscriptionPayload { mutation: MutationType! node: LetsadsSmsMessageStatusItem updatedFields: [String!] previousValues: LetsadsSmsMessageStatusItemPreviousValues } input LetsadsSmsMessageStatusItemSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [LetsadsSmsMessageStatusItemSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [LetsadsSmsMessageStatusItemSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [LetsadsSmsMessageStatusItemSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: LetsadsSmsMessageStatusItemWhereInput } input LetsadsSmsMessageStatusItemUpdateDataInput { sms_id: Int } input LetsadsSmsMessageStatusItemUpdateInput { sms_id: Int } input LetsadsSmsMessageStatusItemUpdateManyInput { connect: [LetsadsSmsMessageStatusItemWhereUniqueInput!] disconnect: [LetsadsSmsMessageStatusItemWhereUniqueInput!] } input LetsadsSmsMessageStatusItemUpdateWithWhereUniqueNestedInput { where: LetsadsSmsMessageStatusItemWhereUniqueInput! data: LetsadsSmsMessageStatusItemUpdateDataInput! } input LetsadsSmsMessageStatusItemUpsertWithWhereUniqueNestedInput { where: LetsadsSmsMessageStatusItemWhereUniqueInput! } input LetsadsSmsMessageStatusItemWhereInput { """Logical AND on all given filters.""" AND: [LetsadsSmsMessageStatusItemWhereInput!] """Logical OR on all given filters.""" OR: [LetsadsSmsMessageStatusItemWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [LetsadsSmsMessageStatusItemWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime sms_id: Int """All values that are not equal to given value.""" sms_id_not: Int """All values that are contained in given list.""" sms_id_in: [Int!] """All values that are not contained in given list.""" sms_id_not_in: [Int!] """All values less than the given value.""" sms_id_lt: Int """All values less than or equal the given value.""" sms_id_lte: Int """All values greater than the given value.""" sms_id_gt: Int """All values greater than or equal the given value.""" sms_id_gte: Int } input LetsadsSmsMessageStatusItemWhereUniqueInput { id: ID sms_id: Int } enum LetsadsSmsMessageStatusOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC name_ASC name_DESC description_ASC description_DESC errorCode_ASC errorCode_DESC } type LetsadsSmsMessageStatusPreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! name: LetsadsSmsMessageStatusEnum description: String errorCode: LetsadsSmsMessageStatusErrorCodeEnum } type LetsadsSmsMessageStatusSubscriptionPayload { mutation: MutationType! node: LetsadsSmsMessageStatus updatedFields: [String!] previousValues: LetsadsSmsMessageStatusPreviousValues } input LetsadsSmsMessageStatusSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [LetsadsSmsMessageStatusSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [LetsadsSmsMessageStatusSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [LetsadsSmsMessageStatusSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: LetsadsSmsMessageStatusWhereInput } input LetsadsSmsMessageStatusUpdateInput { name: LetsadsSmsMessageStatusEnum description: String errorCode: LetsadsSmsMessageStatusErrorCodeEnum SmsMessage: SmsMessageUpdateOneWithoutStatusInput Items: LetsadsSmsMessageStatusItemUpdateManyInput } input LetsadsSmsMessageStatusUpdateOneWithoutSmsMessageInput { connect: LetsadsSmsMessageStatusWhereUniqueInput disconnect: Boolean } input LetsadsSmsMessageStatusUpdateWithoutSmsMessageDataInput { name: LetsadsSmsMessageStatusEnum description: String errorCode: LetsadsSmsMessageStatusErrorCodeEnum Items: LetsadsSmsMessageStatusItemUpdateManyInput } input LetsadsSmsMessageStatusWhereInput { """Logical AND on all given filters.""" AND: [LetsadsSmsMessageStatusWhereInput!] """Logical OR on all given filters.""" OR: [LetsadsSmsMessageStatusWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [LetsadsSmsMessageStatusWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime name: LetsadsSmsMessageStatusEnum """All values that are not equal to given value.""" name_not: LetsadsSmsMessageStatusEnum """All values that are contained in given list.""" name_in: [LetsadsSmsMessageStatusEnum!] """All values that are not contained in given list.""" name_not_in: [LetsadsSmsMessageStatusEnum!] description: String """All values that are not equal to given value.""" description_not: String """All values that are contained in given list.""" description_in: [String!] """All values that are not contained in given list.""" description_not_in: [String!] """All values less than the given value.""" description_lt: String """All values less than or equal the given value.""" description_lte: String """All values greater than the given value.""" description_gt: String """All values greater than or equal the given value.""" description_gte: String """All values containing the given string.""" description_contains: String """All values not containing the given string.""" description_not_contains: String """All values starting with the given string.""" description_starts_with: String """All values not starting with the given string.""" description_not_starts_with: String """All values ending with the given string.""" description_ends_with: String """All values not ending with the given string.""" description_not_ends_with: String errorCode: LetsadsSmsMessageStatusErrorCodeEnum """All values that are not equal to given value.""" errorCode_not: LetsadsSmsMessageStatusErrorCodeEnum """All values that are contained in given list.""" errorCode_in: [LetsadsSmsMessageStatusErrorCodeEnum!] """All values that are not contained in given list.""" errorCode_not_in: [LetsadsSmsMessageStatusErrorCodeEnum!] SmsMessage: SmsMessageWhereInput Items_every: LetsadsSmsMessageStatusItemWhereInput Items_some: LetsadsSmsMessageStatusItemWhereInput Items_none: LetsadsSmsMessageStatusItemWhereInput } input LetsadsSmsMessageStatusWhereUniqueInput { id: ID } type Letter implements Node { id: ID! email: String! subject: String! message: String! status: LetterStatus! rank: Int deleteOnSend: Boolean replyTo: String returnTo: String } """A connection to a list of items.""" type LetterConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [LetterEdge]! aggregate: AggregateLetter! } input LetterCreateInput { email: String! subject: String! message: String! status: LetterStatus rank: Int deleteOnSend: Boolean replyTo: String returnTo: String } """An edge in a connection.""" type LetterEdge { """The item at the end of the edge.""" node: Letter! """A cursor for use in pagination.""" cursor: String! } enum LetterOrderByInput { id_ASC id_DESC email_ASC email_DESC subject_ASC subject_DESC message_ASC message_DESC status_ASC status_DESC rank_ASC rank_DESC deleteOnSend_ASC deleteOnSend_DESC replyTo_ASC replyTo_DESC returnTo_ASC returnTo_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } type LetterPreviousValues { id: ID! email: String! subject: String! message: String! status: LetterStatus! rank: Int deleteOnSend: Boolean replyTo: String returnTo: String } enum LetterStatus { Created Processing Sended Error } type LetterSubscriptionPayload { mutation: MutationType! node: Letter updatedFields: [String!] previousValues: LetterPreviousValues } input LetterSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [LetterSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [LetterSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [LetterSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: LetterWhereInput } input LetterUpdateInput { email: String subject: String message: String status: LetterStatus rank: Int deleteOnSend: Boolean replyTo: String returnTo: String } input LetterWhereInput { """Logical AND on all given filters.""" AND: [LetterWhereInput!] """Logical OR on all given filters.""" OR: [LetterWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [LetterWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID email: String """All values that are not equal to given value.""" email_not: String """All values that are contained in given list.""" email_in: [String!] """All values that are not contained in given list.""" email_not_in: [String!] """All values less than the given value.""" email_lt: String """All values less than or equal the given value.""" email_lte: String """All values greater than the given value.""" email_gt: String """All values greater than or equal the given value.""" email_gte: String """All values containing the given string.""" email_contains: String """All values not containing the given string.""" email_not_contains: String """All values starting with the given string.""" email_starts_with: String """All values not starting with the given string.""" email_not_starts_with: String """All values ending with the given string.""" email_ends_with: String """All values not ending with the given string.""" email_not_ends_with: String subject: String """All values that are not equal to given value.""" subject_not: String """All values that are contained in given list.""" subject_in: [String!] """All values that are not contained in given list.""" subject_not_in: [String!] """All values less than the given value.""" subject_lt: String """All values less than or equal the given value.""" subject_lte: String """All values greater than the given value.""" subject_gt: String """All values greater than or equal the given value.""" subject_gte: String """All values containing the given string.""" subject_contains: String """All values not containing the given string.""" subject_not_contains: String """All values starting with the given string.""" subject_starts_with: String """All values not starting with the given string.""" subject_not_starts_with: String """All values ending with the given string.""" subject_ends_with: String """All values not ending with the given string.""" subject_not_ends_with: String message: String """All values that are not equal to given value.""" message_not: String """All values that are contained in given list.""" message_in: [String!] """All values that are not contained in given list.""" message_not_in: [String!] """All values less than the given value.""" message_lt: String """All values less than or equal the given value.""" message_lte: String """All values greater than the given value.""" message_gt: String """All values greater than or equal the given value.""" message_gte: String """All values containing the given string.""" message_contains: String """All values not containing the given string.""" message_not_contains: String """All values starting with the given string.""" message_starts_with: String """All values not starting with the given string.""" message_not_starts_with: String """All values ending with the given string.""" message_ends_with: String """All values not ending with the given string.""" message_not_ends_with: String status: LetterStatus """All values that are not equal to given value.""" status_not: LetterStatus """All values that are contained in given list.""" status_in: [LetterStatus!] """All values that are not contained in given list.""" status_not_in: [LetterStatus!] rank: Int """All values that are not equal to given value.""" rank_not: Int """All values that are contained in given list.""" rank_in: [Int!] """All values that are not contained in given list.""" rank_not_in: [Int!] """All values less than the given value.""" rank_lt: Int """All values less than or equal the given value.""" rank_lte: Int """All values greater than the given value.""" rank_gt: Int """All values greater than or equal the given value.""" rank_gte: Int deleteOnSend: Boolean """All values that are not equal to given value.""" deleteOnSend_not: Boolean replyTo: String """All values that are not equal to given value.""" replyTo_not: String """All values that are contained in given list.""" replyTo_in: [String!] """All values that are not contained in given list.""" replyTo_not_in: [String!] """All values less than the given value.""" replyTo_lt: String """All values less than or equal the given value.""" replyTo_lte: String """All values greater than the given value.""" replyTo_gt: String """All values greater than or equal the given value.""" replyTo_gte: String """All values containing the given string.""" replyTo_contains: String """All values not containing the given string.""" replyTo_not_contains: String """All values starting with the given string.""" replyTo_starts_with: String """All values not starting with the given string.""" replyTo_not_starts_with: String """All values ending with the given string.""" replyTo_ends_with: String """All values not ending with the given string.""" replyTo_not_ends_with: String returnTo: String """All values that are not equal to given value.""" returnTo_not: String """All values that are contained in given list.""" returnTo_in: [String!] """All values that are not contained in given list.""" returnTo_not_in: [String!] """All values less than the given value.""" returnTo_lt: String """All values less than or equal the given value.""" returnTo_lte: String """All values greater than the given value.""" returnTo_gt: String """All values greater than or equal the given value.""" returnTo_gte: String """All values containing the given string.""" returnTo_contains: String """All values not containing the given string.""" returnTo_not_contains: String """All values starting with the given string.""" returnTo_starts_with: String """All values not starting with the given string.""" returnTo_not_starts_with: String """All values ending with the given string.""" returnTo_ends_with: String """All values not ending with the given string.""" returnTo_not_ends_with: String } input LetterWhereUniqueInput { id: ID } type Log implements Node { id: ID! level: LogLevel! objectType: ID message: String! stack: String createdAt: DateTime! updatedAt: DateTime! } """A connection to a list of items.""" type LogConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [LogEdge]! aggregate: AggregateLog! } input LogCreateInput { level: LogLevel objectType: ID message: String! stack: String } """An edge in a connection.""" type LogEdge { """The item at the end of the edge.""" node: Log! """A cursor for use in pagination.""" cursor: String! } type LogedIn implements Node { id: ID! createdAt: DateTime! fake: Boolean User(where: UserWhereInput): User! } """A connection to a list of items.""" type LogedInConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [LogedInEdge]! aggregate: AggregateLogedIn! } input LogedInCreateInput { fake: Boolean User: UserCreateOneWithoutLogedInsInput! } input LogedInCreateManyWithoutUserInput { connect: [LogedInWhereUniqueInput!] } input LogedInCreateWithoutUserInput { fake: Boolean } """An edge in a connection.""" type LogedInEdge { """The item at the end of the edge.""" node: LogedIn! """A cursor for use in pagination.""" cursor: String! } enum LogedInOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC fake_ASC fake_DESC updatedAt_ASC updatedAt_DESC } type LogedInPreviousValues { id: ID! createdAt: DateTime! fake: Boolean } type LogedInSubscriptionPayload { mutation: MutationType! node: LogedIn updatedFields: [String!] previousValues: LogedInPreviousValues } input LogedInSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [LogedInSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [LogedInSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [LogedInSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: LogedInWhereInput } input LogedInUpdateInput { fake: Boolean User: UserUpdateOneWithoutLogedInsInput } input LogedInUpdateManyWithoutUserInput { connect: [LogedInWhereUniqueInput!] disconnect: [LogedInWhereUniqueInput!] } input LogedInUpdateWithoutUserDataInput { fake: Boolean } input LogedInUpdateWithWhereUniqueWithoutUserInput { where: LogedInWhereUniqueInput! data: LogedInUpdateWithoutUserDataInput! } input LogedInUpsertWithWhereUniqueWithoutUserInput { where: LogedInWhereUniqueInput! } input LogedInWhereInput { """Logical AND on all given filters.""" AND: [LogedInWhereInput!] """Logical OR on all given filters.""" OR: [LogedInWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [LogedInWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime fake: Boolean """All values that are not equal to given value.""" fake_not: Boolean User: UserWhereInput } input LogedInWhereUniqueInput { id: ID } enum LogLevel { Info Notice Warning Error Fatal } enum LogOrderByInput { id_ASC id_DESC level_ASC level_DESC objectType_ASC objectType_DESC message_ASC message_DESC stack_ASC stack_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC } type LogPreviousValues { id: ID! level: LogLevel! objectType: ID message: String! stack: String createdAt: DateTime! updatedAt: DateTime! } type LogSubscriptionPayload { mutation: MutationType! node: Log updatedFields: [String!] previousValues: LogPreviousValues } input LogSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [LogSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [LogSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [LogSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: LogWhereInput } input LogUpdateInput { level: LogLevel objectType: ID message: String stack: String } input LogWhereInput { """Logical AND on all given filters.""" AND: [LogWhereInput!] """Logical OR on all given filters.""" OR: [LogWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [LogWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID level: LogLevel """All values that are not equal to given value.""" level_not: LogLevel """All values that are contained in given list.""" level_in: [LogLevel!] """All values that are not contained in given list.""" level_not_in: [LogLevel!] objectType: ID """All values that are not equal to given value.""" objectType_not: ID """All values that are contained in given list.""" objectType_in: [ID!] """All values that are not contained in given list.""" objectType_not_in: [ID!] """All values less than the given value.""" objectType_lt: ID """All values less than or equal the given value.""" objectType_lte: ID """All values greater than the given value.""" objectType_gt: ID """All values greater than or equal the given value.""" objectType_gte: ID """All values containing the given string.""" objectType_contains: ID """All values not containing the given string.""" objectType_not_contains: ID """All values starting with the given string.""" objectType_starts_with: ID """All values not starting with the given string.""" objectType_not_starts_with: ID """All values ending with the given string.""" objectType_ends_with: ID """All values not ending with the given string.""" objectType_not_ends_with: ID message: String """All values that are not equal to given value.""" message_not: String """All values that are contained in given list.""" message_in: [String!] """All values that are not contained in given list.""" message_not_in: [String!] """All values less than the given value.""" message_lt: String """All values less than or equal the given value.""" message_lte: String """All values greater than the given value.""" message_gt: String """All values greater than or equal the given value.""" message_gte: String """All values containing the given string.""" message_contains: String """All values not containing the given string.""" message_not_contains: String """All values starting with the given string.""" message_starts_with: String """All values not starting with the given string.""" message_not_starts_with: String """All values ending with the given string.""" message_ends_with: String """All values not ending with the given string.""" message_not_ends_with: String stack: String """All values that are not equal to given value.""" stack_not: String """All values that are contained in given list.""" stack_in: [String!] """All values that are not contained in given list.""" stack_not_in: [String!] """All values less than the given value.""" stack_lt: String """All values less than or equal the given value.""" stack_lte: String """All values greater than the given value.""" stack_gt: String """All values greater than or equal the given value.""" stack_gte: String """All values containing the given string.""" stack_contains: String """All values not containing the given string.""" stack_not_contains: String """All values starting with the given string.""" stack_starts_with: String """All values not starting with the given string.""" stack_not_starts_with: String """All values ending with the given string.""" stack_ends_with: String """All values not ending with the given string.""" stack_not_ends_with: String createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime } input LogWhereUniqueInput { id: ID } """ The `Long` scalar type represents non-fractional signed whole numeric values. Long can represent values between -(2^63) and 2^63 - 1. """ scalar Long type MarketplaceAuthResponse { success: Boolean! message: String errors: [Error!]! data: String } type ModxUser implements Node { id: ID! externalKey: Int! User(where: UserWhereInput): User! } """A connection to a list of items.""" type ModxUserConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [ModxUserEdge]! aggregate: AggregateModxUser! } input ModxUserCreateInput { externalKey: Int! User: UserCreateOneWithoutModxUserInput! } input ModxUserCreateOneWithoutUserInput { connect: ModxUserWhereUniqueInput } input ModxUserCreateWithoutUserInput { externalKey: Int! } """An edge in a connection.""" type ModxUserEdge { """The item at the end of the edge.""" node: ModxUser! """A cursor for use in pagination.""" cursor: String! } enum ModxUserOrderByInput { id_ASC id_DESC externalKey_ASC externalKey_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } type ModxUserPreviousValues { id: ID! externalKey: Int! } type ModxUserSubscriptionPayload { mutation: MutationType! node: ModxUser updatedFields: [String!] previousValues: ModxUserPreviousValues } input ModxUserSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [ModxUserSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [ModxUserSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ModxUserSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: ModxUserWhereInput } input ModxUserUpdateInput { externalKey: Int User: UserUpdateOneWithoutModxUserInput } input ModxUserUpdateOneWithoutUserInput { connect: ModxUserWhereUniqueInput disconnect: Boolean } input ModxUserUpdateWithoutUserDataInput { externalKey: Int } input ModxUserWhereInput { """Logical AND on all given filters.""" AND: [ModxUserWhereInput!] """Logical OR on all given filters.""" OR: [ModxUserWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ModxUserWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID externalKey: Int """All values that are not equal to given value.""" externalKey_not: Int """All values that are contained in given list.""" externalKey_in: [Int!] """All values that are not contained in given list.""" externalKey_not_in: [Int!] """All values less than the given value.""" externalKey_lt: Int """All values less than or equal the given value.""" externalKey_lte: Int """All values greater than the given value.""" externalKey_gt: Int """All values greater than or equal the given value.""" externalKey_gte: Int User: UserWhereInput } input ModxUserWhereUniqueInput { id: ID } type Mutation { signup(username: String!, email: String!, password: String!, data: UserCreateInput!): AuthPayload! createUserProcessor(data: UserCreateInput!): UserResponse! requestJoinUserProcessor(data: RequestJoinUserInput!): RequestJoinUserResponse! acceptRequestJoinUserProcessor(where: UserWhereUniqueInput!): UserResponse! updateUserProcessor(id: ID, where: UserWhereUniqueInput, data: UserUpdateInput!): UserResponse! markAsExportedUserProcessor(where: UserWhereUniqueInput, data: UserUpdateInput!): User! exportUserProcessor(id: ID!): UserResponse! importUserProcessor(data: Json!): UserResponse! resetPassword(where: UserWhereUniqueInput!): Boolean! singleUpload(file: Upload!, data: SingleUploadInput): File multipleUpload(files: [Upload!]!): [File!] importUsers(file: Upload!): Boolean! importOrders(file: Upload!): Boolean! createOrderProcessor(data: OrderCreateInput!): OrderResponse! updateOrderProcessor(data: OrderUpdateInput!, where: OrderWhereUniqueInput!): OrderResponse! updateServiceOrderProcessor(data: ServiceOrderUpdateInput!, where: ServiceOrderWhereUniqueInput!): ServiceOrderResponse! createOrderItemProcessor(data: OrderItemCreateInput!): OrderItemResponse! updateOrderItemProcessor(where: OrderItemWhereUniqueInput, data: OrderItemUpdateInput!): OrderItemResponse! createChatMessageProcessor(data: ChatMessageCreateInput!): ChatMessageResponse! updateChatMessageProcessor(data: ChatMessageUpdateInput!, where: ChatMessageWhereUniqueInput!): ChatMessageResponse! chatMessageMarkAsReaded(id: ID!): ChatMessageResponse! markServicesOrdersAsImported(where: ServiceOrderWhereInput): BatchPayload! exportAllUsers: Boolean! createExpertiserProcessor(data: ExpertiserCreateInput!): ExpertiserResponse! updateExpertiserProcessor(data: ExpertiserUpdateInput!, where: ExpertiserWhereUniqueInput!): ExpertiserResponse! createExpertiseProcessor(data: ExpertiseCreateInput!): ExpertiseResponse! updateExpertiseProcessor(data: ExpertiseUpdateInput!, where: ExpertiseWhereUniqueInput!): ExpertiseResponse! createDiscountGroupProcessor(data: DiscountGroupCreateInput!): DiscountGroupResponse! updateDiscountGroupProcessor(data: DiscountGroupUpdateInput!, where: DiscountGroupWhereUniqueInput!): DiscountGroupResponse! importExpertiser(data: Json!): Expertiser! """Временно. Создаем счета для заказов""" createServiceOrdersInvoices: Int updateOrderItem(data: OrderItemUpdateInput!, where: OrderItemWhereUniqueInput!): OrderItem updateChatRoom(data: ChatRoomUpdateInput!, where: ChatRoomWhereUniqueInput!): ChatRoom deleteInvoice(where: InvoiceWhereUniqueInput!): Invoice deleteInvoiceItem(where: InvoiceItemWhereUniqueInput!): InvoiceItem deleteNotice(where: NoticeWhereUniqueInput!): Notice deleteProjectMember(where: ProjectMemberWhereUniqueInput!): ProjectMember deleteTaskReaction(where: TaskReactionWhereUniqueInput!): TaskReaction deleteTeamMember(where: TeamMemberWhereUniqueInput!): TeamMember deleteRoute(where: RouteWhereUniqueInput!): Route deleteDiscountGroup(where: DiscountGroupWhereUniqueInput!): DiscountGroup deleteOrder(where: OrderWhereUniqueInput!): Order deleteOrderItem(where: OrderItemWhereUniqueInput!): OrderItem deleteTemplate(where: TemplateWhereUniqueInput!): Template deleteChatMessage(where: ChatMessageWhereUniqueInput!): ChatMessage deleteUser(where: UserWhereUniqueInput!): User deleteManyNotices(where: NoticeWhereInput): BatchPayload! deleteManyRoutes(where: RouteWhereInput): BatchPayload! deleteManyDiscountGroups(where: DiscountGroupWhereInput): BatchPayload! deleteManyServiceOrders(where: ServiceOrderWhereInput): BatchPayload! createInvoiceProcessor(data: InvoiceCreateInput!): InvoiceResponse! updateInvoiceProcessor(data: InvoiceUpdateInput!, where: InvoiceWhereUniqueInput!): InvoiceResponse! createInvoiceItemProcessor(data: InvoiceItemCreateInput!): InvoiceItemResponse! updateInvoiceItemProcessor(data: InvoiceItemUpdateInput!, where: InvoiceItemWhereUniqueInput!): InvoiceItemResponse! createSmsMessageProcessor(data: SmsMessageCreateInput!): SmsMessageResponse! createSmsProviderProcessor(data: SmsProviderCreateInput!): SmsProviderResponse! updateSmsProviderProcessor(data: SmsProviderUpdateInput!, where: SmsProviderWhereUniqueInput!): SmsProviderResponse! signin(where: UserWhereUniqueInput!, data: SigninDataInput!): AuthPayload! resetPasswordProcessor(data: ResetPasswordInput!, where: UserWhereUniqueInput!): AuthPayload! createResetPasswordProcessor(data: ResetPasswordCreateInput!): ResetPasswordResponse! createResourceProcessor(data: ResourceCreateInput!): ResourceResponse! updateResourceProcessor(data: ResourceUpdateInput!, where: ResourceWhereUniqueInput!): ResourceResponse! createProjectProcessor(data: ProjectCreateInput!): ProjectResponse! updateProjectProcessor(data: ProjectUpdateInput!, where: ProjectWhereUniqueInput!): ProjectResponse! createProjectMemberProcessor(data: ProjectMemberCreateInput!): ProjectMemberResponse! updateProjectMemberProcessor(data: ProjectMemberUpdateInput!, where: ProjectMemberWhereUniqueInput!): ProjectMemberResponse! createTaskProcessor(data: TaskCreateInput!): TaskResponse! updateTaskProcessor(data: TaskUpdateInput!, where: TaskWhereUniqueInput!): TaskResponse! createTaskReactionProcessor(data: TaskReactionCreateInput!): TaskReactionResponse! updateTaskReactionProcessor(data: TaskReactionUpdateInput!, where: TaskReactionWhereUniqueInput!): TaskReactionResponse! createTimerProcessor(data: TimerCreateInput!): TimerResponse! updateTimerProcessor(data: TimerUpdateInput!, where: TimerWhereUniqueInput!): TimerResponse! createTeamProcessor(data: TeamCreateInput!): TeamResponse! updateTeamProcessor(data: TeamUpdateInput!, where: TeamWhereUniqueInput!): TeamResponse! createTeamMemberProcessor(data: TeamMemberCreateInput!): TeamMemberResponse! updateTeamMemberProcessor(data: TeamMemberUpdateInput!, where: TeamMemberWhereUniqueInput!): TeamMemberResponse! createServiceProcessor(data: ServiceCreateInput!): ServiceResponse! updateServiceProcessor(data: ServiceUpdateInput!, where: ServiceWhereUniqueInput!): ServiceResponse! createPositionProcessor(data: PositionCreateInput!): PositionResponse! updatePositionProcessor(data: PositionUpdateInput!, where: PositionWhereUniqueInput!): PositionResponse! createRouteProcessor(data: RouteCreateInput!): RouteResponse! updateRouteProcessor(data: RouteUpdateInput!, where: RouteWhereUniqueInput!): RouteResponse! createTemplateProcessor(data: TemplateCreateInput!): TemplateResponse! updateTemplateProcessor(data: TemplateUpdateInput!, where: TemplateWhereUniqueInput!): TemplateResponse! marketplaceSignin(where: UserWhereUniqueInput!, data: SigninDataInput!): MarketplaceAuthResponse! } enum MutationType { CREATED UPDATED DELETED } """An object with an ID""" interface Node { """The id of the object.""" id: ID! } type Notice implements Node { id: ID! createdAt: DateTime! type: NoticeType! User(where: UserWhereInput): User! CreatedBy(where: UserWhereInput): User ChatMessage(where: ChatMessageWhereInput): ChatMessage ChatRoomInvitation(where: ChatRoomInvitationWhereInput): ChatRoomInvitation } """A connection to a list of items.""" type NoticeConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [NoticeEdge]! aggregate: AggregateNotice! } input NoticeCreateInput { type: NoticeType! User: UserCreateOneWithoutNoticesInput! CreatedBy: UserCreateOneInput ChatMessage: ChatMessageCreateOneInput ChatRoomInvitation: ChatRoomInvitationCreateOneWithoutNoticeInput } input NoticeCreateManyWithoutUserInput { connect: [NoticeWhereUniqueInput!] } input NoticeCreateOneWithoutChatRoomInvitationInput { connect: NoticeWhereUniqueInput } input NoticeCreateWithoutChatRoomInvitationInput { type: NoticeType! User: UserCreateOneWithoutNoticesInput! CreatedBy: UserCreateOneInput ChatMessage: ChatMessageCreateOneInput } input NoticeCreateWithoutUserInput { type: NoticeType! CreatedBy: UserCreateOneInput ChatMessage: ChatMessageCreateOneInput ChatRoomInvitation: ChatRoomInvitationCreateOneWithoutNoticeInput } """An edge in a connection.""" type NoticeEdge { """The item at the end of the edge.""" node: Notice! """A cursor for use in pagination.""" cursor: String! } enum NoticeOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC type_ASC type_DESC updatedAt_ASC updatedAt_DESC } type NoticePreviousValues { id: ID! createdAt: DateTime! type: NoticeType! } type NoticeSubscriptionPayload { mutation: MutationType! node: Notice updatedFields: [String!] previousValues: NoticePreviousValues } input NoticeSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [NoticeSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [NoticeSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [NoticeSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: NoticeWhereInput } enum NoticeType { ChatMessage Call CallRequest ChatRoomInvitation } input NoticeUpdateInput { type: NoticeType User: UserUpdateOneWithoutNoticesInput CreatedBy: UserUpdateOneInput ChatMessage: ChatMessageUpdateOneInput ChatRoomInvitation: ChatRoomInvitationUpdateOneWithoutNoticeInput } input NoticeUpdateManyWithoutUserInput { connect: [NoticeWhereUniqueInput!] disconnect: [NoticeWhereUniqueInput!] } input NoticeUpdateOneWithoutChatRoomInvitationInput { connect: NoticeWhereUniqueInput disconnect: Boolean } input NoticeUpdateWithoutChatRoomInvitationDataInput { type: NoticeType User: UserUpdateOneWithoutNoticesInput CreatedBy: UserUpdateOneInput ChatMessage: ChatMessageUpdateOneInput } input NoticeUpdateWithoutUserDataInput { type: NoticeType CreatedBy: UserUpdateOneInput ChatMessage: ChatMessageUpdateOneInput ChatRoomInvitation: ChatRoomInvitationUpdateOneWithoutNoticeInput } input NoticeUpdateWithWhereUniqueWithoutUserInput { where: NoticeWhereUniqueInput! data: NoticeUpdateWithoutUserDataInput! } input NoticeUpsertWithWhereUniqueWithoutUserInput { where: NoticeWhereUniqueInput! } input NoticeWhereInput { """Logical AND on all given filters.""" AND: [NoticeWhereInput!] """Logical OR on all given filters.""" OR: [NoticeWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [NoticeWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime type: NoticeType """All values that are not equal to given value.""" type_not: NoticeType """All values that are contained in given list.""" type_in: [NoticeType!] """All values that are not contained in given list.""" type_not_in: [NoticeType!] User: UserWhereInput CreatedBy: UserWhereInput ChatMessage: ChatMessageWhereInput ChatRoomInvitation: ChatRoomInvitationWhereInput } input NoticeWhereUniqueInput { id: ID } type NotificationType implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! name: String! code: ID comment: String Users(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User!] CreatedBy(where: UserWhereInput): User! } """A connection to a list of items.""" type NotificationTypeConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [NotificationTypeEdge]! aggregate: AggregateNotificationType! } input NotificationTypeCreateInput { name: String! code: ID comment: String Users: UserCreateManyWithoutNotificationTypesInput CreatedBy: UserCreateOneWithoutNotificationTypesCreatedInput! } input NotificationTypeCreateManyWithoutCreatedByInput { connect: [NotificationTypeWhereUniqueInput!] } input NotificationTypeCreateManyWithoutUsersInput { connect: [NotificationTypeWhereUniqueInput!] } input NotificationTypeCreateWithoutCreatedByInput { name: String! code: ID comment: String Users: UserCreateManyWithoutNotificationTypesInput } input NotificationTypeCreateWithoutUsersInput { name: String! code: ID comment: String CreatedBy: UserCreateOneWithoutNotificationTypesCreatedInput! } """An edge in a connection.""" type NotificationTypeEdge { """The item at the end of the edge.""" node: NotificationType! """A cursor for use in pagination.""" cursor: String! } enum NotificationTypeOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC name_ASC name_DESC code_ASC code_DESC comment_ASC comment_DESC } type NotificationTypePreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! name: String! code: ID comment: String } type NotificationTypeSubscriptionPayload { mutation: MutationType! node: NotificationType updatedFields: [String!] previousValues: NotificationTypePreviousValues } input NotificationTypeSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [NotificationTypeSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [NotificationTypeSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [NotificationTypeSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: NotificationTypeWhereInput } input NotificationTypeUpdateInput { name: String code: ID comment: String Users: UserUpdateManyWithoutNotificationTypesInput CreatedBy: UserUpdateOneWithoutNotificationTypesCreatedInput } input NotificationTypeUpdateManyWithoutCreatedByInput { connect: [NotificationTypeWhereUniqueInput!] disconnect: [NotificationTypeWhereUniqueInput!] } input NotificationTypeUpdateManyWithoutUsersInput { connect: [NotificationTypeWhereUniqueInput!] disconnect: [NotificationTypeWhereUniqueInput!] } input NotificationTypeUpdateWithoutCreatedByDataInput { name: String code: ID comment: String Users: UserUpdateManyWithoutNotificationTypesInput } input NotificationTypeUpdateWithoutUsersDataInput { name: String code: ID comment: String CreatedBy: UserUpdateOneWithoutNotificationTypesCreatedInput } input NotificationTypeUpdateWithWhereUniqueWithoutCreatedByInput { where: NotificationTypeWhereUniqueInput! data: NotificationTypeUpdateWithoutCreatedByDataInput! } input NotificationTypeUpdateWithWhereUniqueWithoutUsersInput { where: NotificationTypeWhereUniqueInput! data: NotificationTypeUpdateWithoutUsersDataInput! } input NotificationTypeUpsertWithWhereUniqueWithoutCreatedByInput { where: NotificationTypeWhereUniqueInput! } input NotificationTypeUpsertWithWhereUniqueWithoutUsersInput { where: NotificationTypeWhereUniqueInput! } input NotificationTypeWhereInput { """Logical AND on all given filters.""" AND: [NotificationTypeWhereInput!] """Logical OR on all given filters.""" OR: [NotificationTypeWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [NotificationTypeWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String code: ID """All values that are not equal to given value.""" code_not: ID """All values that are contained in given list.""" code_in: [ID!] """All values that are not contained in given list.""" code_not_in: [ID!] """All values less than the given value.""" code_lt: ID """All values less than or equal the given value.""" code_lte: ID """All values greater than the given value.""" code_gt: ID """All values greater than or equal the given value.""" code_gte: ID """All values containing the given string.""" code_contains: ID """All values not containing the given string.""" code_not_contains: ID """All values starting with the given string.""" code_starts_with: ID """All values not starting with the given string.""" code_not_starts_with: ID """All values ending with the given string.""" code_ends_with: ID """All values not ending with the given string.""" code_not_ends_with: ID comment: String """All values that are not equal to given value.""" comment_not: String """All values that are contained in given list.""" comment_in: [String!] """All values that are not contained in given list.""" comment_not_in: [String!] """All values less than the given value.""" comment_lt: String """All values less than or equal the given value.""" comment_lte: String """All values greater than the given value.""" comment_gt: String """All values greater than or equal the given value.""" comment_gte: String """All values containing the given string.""" comment_contains: String """All values not containing the given string.""" comment_not_contains: String """All values starting with the given string.""" comment_starts_with: String """All values not starting with the given string.""" comment_not_starts_with: String """All values ending with the given string.""" comment_ends_with: String """All values not ending with the given string.""" comment_not_ends_with: String Users_every: UserWhereInput Users_some: UserWhereInput Users_none: UserWhereInput CreatedBy: UserWhereInput } input NotificationTypeWhereUniqueInput { id: ID name: String code: ID } type Order implements Node { id: ID! secondID: ID createdAt: DateTime! updatedAt: DateTime! number: Int! date: DateTime User(where: UserWhereInput): User Items(where: OrderItemWhereInput, orderBy: OrderItemOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [OrderItem!] archived: Boolean Invoice(where: InvoiceWhereInput): Invoice } """A connection to a list of items.""" type OrderConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [OrderEdge]! aggregate: AggregateOrder! } input OrderCreateInput { secondID: ID number: ID! date: DateTime userId: ID! archived: Boolean } input OrderCreateManyWithoutUserInput { connect: [OrderWhereUniqueInput!] } input OrderCreateOneWithoutInvoiceInput { connect: OrderWhereUniqueInput } input OrderCreateOneWithoutItemsInput { connect: OrderWhereUniqueInput } input OrderCreateWithoutInvoiceInput { secondID: ID number: Int! date: DateTime archived: Boolean User: UserCreateOneWithoutOrdersInput Items: OrderItemCreateManyWithoutOrderInput } input OrderCreateWithoutItemsInput { secondID: ID number: Int! date: DateTime archived: Boolean User: UserCreateOneWithoutOrdersInput Invoice: InvoiceCreateOneWithoutOrderInput } input OrderCreateWithoutUserInput { secondID: ID number: Int! date: DateTime archived: Boolean Items: OrderItemCreateManyWithoutOrderInput Invoice: InvoiceCreateOneWithoutOrderInput } """An edge in a connection.""" type OrderEdge { """The item at the end of the edge.""" node: Order! """A cursor for use in pagination.""" cursor: String! } type OrderItem implements Node { id: ID! secondID: ID createdAt: DateTime! updatedAt: DateTime! externalKey: Int number: Int! title: String! year: String metal: String sheldon_grade: OrderItemGrade sheldon_grade_details: String fake: String status: String price: Float preGrade: OrderItemGrade grade: String grade_confirm: Boolean tarif: String market_value: String diametr: String thingh: String weight: String ensure_price: Float type: Int coin_num: String frez: String nakl: String bitkin: String expertize: String slab: String Order(where: OrderWhereInput): Order! ServiceOrders(where: ServiceOrderWhereInput, orderBy: ServiceOrderOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ServiceOrder!] Expertises(where: ExpertiseWhereInput, orderBy: ExpertiseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Expertise!] InvoiceItems(where: InvoiceItemWhereInput, orderBy: InvoiceItemOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [InvoiceItem!] } """A connection to a list of items.""" type OrderItemConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [OrderItemEdge]! aggregate: AggregateOrderItem! } input OrderItemCreateInput { secondID: ID externalKey: Int number: Int! title: String! year: String metal: String sheldon_grade: OrderItemGrade sheldon_grade_details: String fake: String status: String price: Float preGrade: OrderItemGrade grade: String grade_confirm: Boolean tarif: String market_value: String diametr: String thingh: String weight: String ensure_price: Float type: Int coin_num: String frez: String nakl: String bitkin: String expertize: String slab: String Order: OrderCreateOneWithoutItemsInput! ServiceOrders: ServiceOrderCreateManyWithoutOrderItemInput Expertises: ExpertiseCreateManyWithoutExemplarInput InvoiceItems: InvoiceItemCreateManyWithoutOrderItemInput } input OrderItemCreateManyWithoutOrderInput { connect: [OrderItemWhereUniqueInput!] } input OrderItemCreateOneWithoutExpertisesInput { connect: OrderItemWhereUniqueInput } input OrderItemCreateOneWithoutInvoiceItemsInput { connect: OrderItemWhereUniqueInput } input OrderItemCreateOneWithoutServiceOrdersInput { connect: OrderItemWhereUniqueInput } input OrderItemCreateWithoutExpertisesInput { secondID: ID externalKey: Int number: Int! title: String! year: String metal: String sheldon_grade: OrderItemGrade sheldon_grade_details: String fake: String status: String price: Float preGrade: OrderItemGrade grade: String grade_confirm: Boolean tarif: String market_value: String diametr: String thingh: String weight: String ensure_price: Float type: Int coin_num: String frez: String nakl: String bitkin: String expertize: String slab: String Order: OrderCreateOneWithoutItemsInput! ServiceOrders: ServiceOrderCreateManyWithoutOrderItemInput InvoiceItems: InvoiceItemCreateManyWithoutOrderItemInput } input OrderItemCreateWithoutInvoiceItemsInput { secondID: ID externalKey: Int number: Int! title: String! year: String metal: String sheldon_grade: OrderItemGrade sheldon_grade_details: String fake: String status: String price: Float preGrade: OrderItemGrade grade: String grade_confirm: Boolean tarif: String market_value: String diametr: String thingh: String weight: String ensure_price: Float type: Int coin_num: String frez: String nakl: String bitkin: String expertize: String slab: String Order: OrderCreateOneWithoutItemsInput! ServiceOrders: ServiceOrderCreateManyWithoutOrderItemInput Expertises: ExpertiseCreateManyWithoutExemplarInput } input OrderItemCreateWithoutOrderInput { secondID: ID externalKey: Int number: Int! title: String! year: String metal: String sheldon_grade: OrderItemGrade sheldon_grade_details: String fake: String status: String price: Float preGrade: OrderItemGrade grade: String grade_confirm: Boolean tarif: String market_value: String diametr: String thingh: String weight: String ensure_price: Float type: Int coin_num: String frez: String nakl: String bitkin: String expertize: String slab: String ServiceOrders: ServiceOrderCreateManyWithoutOrderItemInput Expertises: ExpertiseCreateManyWithoutExemplarInput InvoiceItems: InvoiceItemCreateManyWithoutOrderItemInput } input OrderItemCreateWithoutServiceOrdersInput { secondID: ID externalKey: Int number: Int! title: String! year: String metal: String sheldon_grade: OrderItemGrade sheldon_grade_details: String fake: String status: String price: Float preGrade: OrderItemGrade grade: String grade_confirm: Boolean tarif: String market_value: String diametr: String thingh: String weight: String ensure_price: Float type: Int coin_num: String frez: String nakl: String bitkin: String expertize: String slab: String Order: OrderCreateOneWithoutItemsInput! Expertises: ExpertiseCreateManyWithoutExemplarInput InvoiceItems: InvoiceItemCreateManyWithoutOrderItemInput } """An edge in a connection.""" type OrderItemEdge { """The item at the end of the edge.""" node: OrderItem! """A cursor for use in pagination.""" cursor: String! } enum OrderItemGrade { PF70 PF69 PF68 PF67 PF66 PF65 PF64 PF63 PF62 PF61 PF60 PF58 PF55 PF53 PF50 PF PFDET MS70 MS69 MS68 MS67 MS66 MS65 MS64 MS63 MS62 MS61 MS60 MS UNCDET AU58 AU55 AU53 AU50 AUDET AU XF45 XF40 XFDET XF VF35 VF30 VF25 VF20 VFDET VF F15 F12 FDET F VG10 VG8 VGDET VG G6 G4 GDET G AG3 AGDET AG FA2 FADET FA PR1 PRDET PR NOTGENUINE NOTGRADABLE } enum OrderItemOrderByInput { id_ASC id_DESC secondID_ASC secondID_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC externalKey_ASC externalKey_DESC number_ASC number_DESC title_ASC title_DESC year_ASC year_DESC metal_ASC metal_DESC sheldon_grade_ASC sheldon_grade_DESC sheldon_grade_details_ASC sheldon_grade_details_DESC fake_ASC fake_DESC status_ASC status_DESC price_ASC price_DESC preGrade_ASC preGrade_DESC grade_ASC grade_DESC grade_confirm_ASC grade_confirm_DESC tarif_ASC tarif_DESC market_value_ASC market_value_DESC diametr_ASC diametr_DESC thingh_ASC thingh_DESC weight_ASC weight_DESC ensure_price_ASC ensure_price_DESC type_ASC type_DESC coin_num_ASC coin_num_DESC frez_ASC frez_DESC nakl_ASC nakl_DESC bitkin_ASC bitkin_DESC expertize_ASC expertize_DESC slab_ASC slab_DESC } type OrderItemPreviousValues { id: ID! secondID: ID createdAt: DateTime! updatedAt: DateTime! externalKey: Int number: Int! title: String! year: String metal: String sheldon_grade: OrderItemGrade sheldon_grade_details: String fake: String status: String price: Float preGrade: OrderItemGrade grade: String grade_confirm: Boolean tarif: String market_value: String diametr: String thingh: String weight: String ensure_price: Float type: Int coin_num: String frez: String nakl: String bitkin: String expertize: String slab: String } type OrderItemResponse { success: Boolean! message: String errors: [Error!]! data: OrderItem } type OrderItemSubscriptionPayload { mutation: MutationType! node: OrderItem updatedFields: [String!] previousValues: OrderItemPreviousValues } input OrderItemSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [OrderItemSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [OrderItemSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [OrderItemSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: OrderItemWhereInput } input OrderItemUpdateInput { secondID: ID externalKey: Int number: Int title: String year: String metal: String sheldon_grade: OrderItemGrade sheldon_grade_details: String fake: String status: String price: Float preGrade: OrderItemGrade grade: String grade_confirm: Boolean tarif: String market_value: String diametr: String thingh: String weight: String ensure_price: Float type: Int coin_num: String frez: String nakl: String bitkin: String expertize: String slab: String Order: OrderUpdateOneWithoutItemsInput ServiceOrders: ServiceOrderUpdateManyWithoutOrderItemInput Expertises: ExpertiseUpdateManyWithoutExemplarInput InvoiceItems: InvoiceItemUpdateManyWithoutOrderItemInput } input OrderItemUpdateManyWithoutOrderInput { connect: [OrderItemWhereUniqueInput!] disconnect: [OrderItemWhereUniqueInput!] } input OrderItemUpdateOneWithoutExpertisesInput { connect: OrderItemWhereUniqueInput } input OrderItemUpdateOneWithoutInvoiceItemsInput { connect: OrderItemWhereUniqueInput disconnect: Boolean } input OrderItemUpdateOneWithoutServiceOrdersInput { connect: OrderItemWhereUniqueInput } input OrderItemUpdateWithoutExpertisesDataInput { secondID: ID externalKey: Int number: Int title: String year: String metal: String sheldon_grade: OrderItemGrade sheldon_grade_details: String fake: String status: String price: Float preGrade: OrderItemGrade grade: String grade_confirm: Boolean tarif: String market_value: String diametr: String thingh: String weight: String ensure_price: Float type: Int coin_num: String frez: String nakl: String bitkin: String expertize: String slab: String Order: OrderUpdateOneWithoutItemsInput ServiceOrders: ServiceOrderUpdateManyWithoutOrderItemInput InvoiceItems: InvoiceItemUpdateManyWithoutOrderItemInput } input OrderItemUpdateWithoutInvoiceItemsDataInput { secondID: ID externalKey: Int number: Int title: String year: String metal: String sheldon_grade: OrderItemGrade sheldon_grade_details: String fake: String status: String price: Float preGrade: OrderItemGrade grade: String grade_confirm: Boolean tarif: String market_value: String diametr: String thingh: String weight: String ensure_price: Float type: Int coin_num: String frez: String nakl: String bitkin: String expertize: String slab: String Order: OrderUpdateOneWithoutItemsInput ServiceOrders: ServiceOrderUpdateManyWithoutOrderItemInput Expertises: ExpertiseUpdateManyWithoutExemplarInput } input OrderItemUpdateWithoutOrderDataInput { secondID: ID externalKey: Int number: Int title: String year: String metal: String sheldon_grade: OrderItemGrade sheldon_grade_details: String fake: String status: String price: Float preGrade: OrderItemGrade grade: String grade_confirm: Boolean tarif: String market_value: String diametr: String thingh: String weight: String ensure_price: Float type: Int coin_num: String frez: String nakl: String bitkin: String expertize: String slab: String ServiceOrders: ServiceOrderUpdateManyWithoutOrderItemInput Expertises: ExpertiseUpdateManyWithoutExemplarInput InvoiceItems: InvoiceItemUpdateManyWithoutOrderItemInput } input OrderItemUpdateWithoutServiceOrdersDataInput { secondID: ID externalKey: Int number: Int title: String year: String metal: String sheldon_grade: OrderItemGrade sheldon_grade_details: String fake: String status: String price: Float preGrade: OrderItemGrade grade: String grade_confirm: Boolean tarif: String market_value: String diametr: String thingh: String weight: String ensure_price: Float type: Int coin_num: String frez: String nakl: String bitkin: String expertize: String slab: String Order: OrderUpdateOneWithoutItemsInput Expertises: ExpertiseUpdateManyWithoutExemplarInput InvoiceItems: InvoiceItemUpdateManyWithoutOrderItemInput } input OrderItemUpdateWithWhereUniqueWithoutOrderInput { where: OrderItemWhereUniqueInput! data: OrderItemUpdateWithoutOrderDataInput! } input OrderItemUpsertWithWhereUniqueWithoutOrderInput { where: OrderItemWhereUniqueInput! } input OrderItemWhereInput { """Logical AND on all given filters.""" AND: [OrderItemWhereInput!] """Logical OR on all given filters.""" OR: [OrderItemWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [OrderItemWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID secondID: ID """All values that are not equal to given value.""" secondID_not: ID """All values that are contained in given list.""" secondID_in: [ID!] """All values that are not contained in given list.""" secondID_not_in: [ID!] """All values less than the given value.""" secondID_lt: ID """All values less than or equal the given value.""" secondID_lte: ID """All values greater than the given value.""" secondID_gt: ID """All values greater than or equal the given value.""" secondID_gte: ID """All values containing the given string.""" secondID_contains: ID """All values not containing the given string.""" secondID_not_contains: ID """All values starting with the given string.""" secondID_starts_with: ID """All values not starting with the given string.""" secondID_not_starts_with: ID """All values ending with the given string.""" secondID_ends_with: ID """All values not ending with the given string.""" secondID_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime externalKey: Int """All values that are not equal to given value.""" externalKey_not: Int """All values that are contained in given list.""" externalKey_in: [Int!] """All values that are not contained in given list.""" externalKey_not_in: [Int!] """All values less than the given value.""" externalKey_lt: Int """All values less than or equal the given value.""" externalKey_lte: Int """All values greater than the given value.""" externalKey_gt: Int """All values greater than or equal the given value.""" externalKey_gte: Int number: Int """All values that are not equal to given value.""" number_not: Int """All values that are contained in given list.""" number_in: [Int!] """All values that are not contained in given list.""" number_not_in: [Int!] """All values less than the given value.""" number_lt: Int """All values less than or equal the given value.""" number_lte: Int """All values greater than the given value.""" number_gt: Int """All values greater than or equal the given value.""" number_gte: Int title: String """All values that are not equal to given value.""" title_not: String """All values that are contained in given list.""" title_in: [String!] """All values that are not contained in given list.""" title_not_in: [String!] """All values less than the given value.""" title_lt: String """All values less than or equal the given value.""" title_lte: String """All values greater than the given value.""" title_gt: String """All values greater than or equal the given value.""" title_gte: String """All values containing the given string.""" title_contains: String """All values not containing the given string.""" title_not_contains: String """All values starting with the given string.""" title_starts_with: String """All values not starting with the given string.""" title_not_starts_with: String """All values ending with the given string.""" title_ends_with: String """All values not ending with the given string.""" title_not_ends_with: String year: String """All values that are not equal to given value.""" year_not: String """All values that are contained in given list.""" year_in: [String!] """All values that are not contained in given list.""" year_not_in: [String!] """All values less than the given value.""" year_lt: String """All values less than or equal the given value.""" year_lte: String """All values greater than the given value.""" year_gt: String """All values greater than or equal the given value.""" year_gte: String """All values containing the given string.""" year_contains: String """All values not containing the given string.""" year_not_contains: String """All values starting with the given string.""" year_starts_with: String """All values not starting with the given string.""" year_not_starts_with: String """All values ending with the given string.""" year_ends_with: String """All values not ending with the given string.""" year_not_ends_with: String metal: String """All values that are not equal to given value.""" metal_not: String """All values that are contained in given list.""" metal_in: [String!] """All values that are not contained in given list.""" metal_not_in: [String!] """All values less than the given value.""" metal_lt: String """All values less than or equal the given value.""" metal_lte: String """All values greater than the given value.""" metal_gt: String """All values greater than or equal the given value.""" metal_gte: String """All values containing the given string.""" metal_contains: String """All values not containing the given string.""" metal_not_contains: String """All values starting with the given string.""" metal_starts_with: String """All values not starting with the given string.""" metal_not_starts_with: String """All values ending with the given string.""" metal_ends_with: String """All values not ending with the given string.""" metal_not_ends_with: String sheldon_grade: OrderItemGrade """All values that are not equal to given value.""" sheldon_grade_not: OrderItemGrade """All values that are contained in given list.""" sheldon_grade_in: [OrderItemGrade!] """All values that are not contained in given list.""" sheldon_grade_not_in: [OrderItemGrade!] sheldon_grade_details: String """All values that are not equal to given value.""" sheldon_grade_details_not: String """All values that are contained in given list.""" sheldon_grade_details_in: [String!] """All values that are not contained in given list.""" sheldon_grade_details_not_in: [String!] """All values less than the given value.""" sheldon_grade_details_lt: String """All values less than or equal the given value.""" sheldon_grade_details_lte: String """All values greater than the given value.""" sheldon_grade_details_gt: String """All values greater than or equal the given value.""" sheldon_grade_details_gte: String """All values containing the given string.""" sheldon_grade_details_contains: String """All values not containing the given string.""" sheldon_grade_details_not_contains: String """All values starting with the given string.""" sheldon_grade_details_starts_with: String """All values not starting with the given string.""" sheldon_grade_details_not_starts_with: String """All values ending with the given string.""" sheldon_grade_details_ends_with: String """All values not ending with the given string.""" sheldon_grade_details_not_ends_with: String fake: String """All values that are not equal to given value.""" fake_not: String """All values that are contained in given list.""" fake_in: [String!] """All values that are not contained in given list.""" fake_not_in: [String!] """All values less than the given value.""" fake_lt: String """All values less than or equal the given value.""" fake_lte: String """All values greater than the given value.""" fake_gt: String """All values greater than or equal the given value.""" fake_gte: String """All values containing the given string.""" fake_contains: String """All values not containing the given string.""" fake_not_contains: String """All values starting with the given string.""" fake_starts_with: String """All values not starting with the given string.""" fake_not_starts_with: String """All values ending with the given string.""" fake_ends_with: String """All values not ending with the given string.""" fake_not_ends_with: String status: String """All values that are not equal to given value.""" status_not: String """All values that are contained in given list.""" status_in: [String!] """All values that are not contained in given list.""" status_not_in: [String!] """All values less than the given value.""" status_lt: String """All values less than or equal the given value.""" status_lte: String """All values greater than the given value.""" status_gt: String """All values greater than or equal the given value.""" status_gte: String """All values containing the given string.""" status_contains: String """All values not containing the given string.""" status_not_contains: String """All values starting with the given string.""" status_starts_with: String """All values not starting with the given string.""" status_not_starts_with: String """All values ending with the given string.""" status_ends_with: String """All values not ending with the given string.""" status_not_ends_with: String price: Float """All values that are not equal to given value.""" price_not: Float """All values that are contained in given list.""" price_in: [Float!] """All values that are not contained in given list.""" price_not_in: [Float!] """All values less than the given value.""" price_lt: Float """All values less than or equal the given value.""" price_lte: Float """All values greater than the given value.""" price_gt: Float """All values greater than or equal the given value.""" price_gte: Float preGrade: OrderItemGrade """All values that are not equal to given value.""" preGrade_not: OrderItemGrade """All values that are contained in given list.""" preGrade_in: [OrderItemGrade!] """All values that are not contained in given list.""" preGrade_not_in: [OrderItemGrade!] grade: String """All values that are not equal to given value.""" grade_not: String """All values that are contained in given list.""" grade_in: [String!] """All values that are not contained in given list.""" grade_not_in: [String!] """All values less than the given value.""" grade_lt: String """All values less than or equal the given value.""" grade_lte: String """All values greater than the given value.""" grade_gt: String """All values greater than or equal the given value.""" grade_gte: String """All values containing the given string.""" grade_contains: String """All values not containing the given string.""" grade_not_contains: String """All values starting with the given string.""" grade_starts_with: String """All values not starting with the given string.""" grade_not_starts_with: String """All values ending with the given string.""" grade_ends_with: String """All values not ending with the given string.""" grade_not_ends_with: String grade_confirm: Boolean """All values that are not equal to given value.""" grade_confirm_not: Boolean tarif: String """All values that are not equal to given value.""" tarif_not: String """All values that are contained in given list.""" tarif_in: [String!] """All values that are not contained in given list.""" tarif_not_in: [String!] """All values less than the given value.""" tarif_lt: String """All values less than or equal the given value.""" tarif_lte: String """All values greater than the given value.""" tarif_gt: String """All values greater than or equal the given value.""" tarif_gte: String """All values containing the given string.""" tarif_contains: String """All values not containing the given string.""" tarif_not_contains: String """All values starting with the given string.""" tarif_starts_with: String """All values not starting with the given string.""" tarif_not_starts_with: String """All values ending with the given string.""" tarif_ends_with: String """All values not ending with the given string.""" tarif_not_ends_with: String market_value: String """All values that are not equal to given value.""" market_value_not: String """All values that are contained in given list.""" market_value_in: [String!] """All values that are not contained in given list.""" market_value_not_in: [String!] """All values less than the given value.""" market_value_lt: String """All values less than or equal the given value.""" market_value_lte: String """All values greater than the given value.""" market_value_gt: String """All values greater than or equal the given value.""" market_value_gte: String """All values containing the given string.""" market_value_contains: String """All values not containing the given string.""" market_value_not_contains: String """All values starting with the given string.""" market_value_starts_with: String """All values not starting with the given string.""" market_value_not_starts_with: String """All values ending with the given string.""" market_value_ends_with: String """All values not ending with the given string.""" market_value_not_ends_with: String diametr: String """All values that are not equal to given value.""" diametr_not: String """All values that are contained in given list.""" diametr_in: [String!] """All values that are not contained in given list.""" diametr_not_in: [String!] """All values less than the given value.""" diametr_lt: String """All values less than or equal the given value.""" diametr_lte: String """All values greater than the given value.""" diametr_gt: String """All values greater than or equal the given value.""" diametr_gte: String """All values containing the given string.""" diametr_contains: String """All values not containing the given string.""" diametr_not_contains: String """All values starting with the given string.""" diametr_starts_with: String """All values not starting with the given string.""" diametr_not_starts_with: String """All values ending with the given string.""" diametr_ends_with: String """All values not ending with the given string.""" diametr_not_ends_with: String thingh: String """All values that are not equal to given value.""" thingh_not: String """All values that are contained in given list.""" thingh_in: [String!] """All values that are not contained in given list.""" thingh_not_in: [String!] """All values less than the given value.""" thingh_lt: String """All values less than or equal the given value.""" thingh_lte: String """All values greater than the given value.""" thingh_gt: String """All values greater than or equal the given value.""" thingh_gte: String """All values containing the given string.""" thingh_contains: String """All values not containing the given string.""" thingh_not_contains: String """All values starting with the given string.""" thingh_starts_with: String """All values not starting with the given string.""" thingh_not_starts_with: String """All values ending with the given string.""" thingh_ends_with: String """All values not ending with the given string.""" thingh_not_ends_with: String weight: String """All values that are not equal to given value.""" weight_not: String """All values that are contained in given list.""" weight_in: [String!] """All values that are not contained in given list.""" weight_not_in: [String!] """All values less than the given value.""" weight_lt: String """All values less than or equal the given value.""" weight_lte: String """All values greater than the given value.""" weight_gt: String """All values greater than or equal the given value.""" weight_gte: String """All values containing the given string.""" weight_contains: String """All values not containing the given string.""" weight_not_contains: String """All values starting with the given string.""" weight_starts_with: String """All values not starting with the given string.""" weight_not_starts_with: String """All values ending with the given string.""" weight_ends_with: String """All values not ending with the given string.""" weight_not_ends_with: String ensure_price: Float """All values that are not equal to given value.""" ensure_price_not: Float """All values that are contained in given list.""" ensure_price_in: [Float!] """All values that are not contained in given list.""" ensure_price_not_in: [Float!] """All values less than the given value.""" ensure_price_lt: Float """All values less than or equal the given value.""" ensure_price_lte: Float """All values greater than the given value.""" ensure_price_gt: Float """All values greater than or equal the given value.""" ensure_price_gte: Float type: Int """All values that are not equal to given value.""" type_not: Int """All values that are contained in given list.""" type_in: [Int!] """All values that are not contained in given list.""" type_not_in: [Int!] """All values less than the given value.""" type_lt: Int """All values less than or equal the given value.""" type_lte: Int """All values greater than the given value.""" type_gt: Int """All values greater than or equal the given value.""" type_gte: Int coin_num: String """All values that are not equal to given value.""" coin_num_not: String """All values that are contained in given list.""" coin_num_in: [String!] """All values that are not contained in given list.""" coin_num_not_in: [String!] """All values less than the given value.""" coin_num_lt: String """All values less than or equal the given value.""" coin_num_lte: String """All values greater than the given value.""" coin_num_gt: String """All values greater than or equal the given value.""" coin_num_gte: String """All values containing the given string.""" coin_num_contains: String """All values not containing the given string.""" coin_num_not_contains: String """All values starting with the given string.""" coin_num_starts_with: String """All values not starting with the given string.""" coin_num_not_starts_with: String """All values ending with the given string.""" coin_num_ends_with: String """All values not ending with the given string.""" coin_num_not_ends_with: String frez: String """All values that are not equal to given value.""" frez_not: String """All values that are contained in given list.""" frez_in: [String!] """All values that are not contained in given list.""" frez_not_in: [String!] """All values less than the given value.""" frez_lt: String """All values less than or equal the given value.""" frez_lte: String """All values greater than the given value.""" frez_gt: String """All values greater than or equal the given value.""" frez_gte: String """All values containing the given string.""" frez_contains: String """All values not containing the given string.""" frez_not_contains: String """All values starting with the given string.""" frez_starts_with: String """All values not starting with the given string.""" frez_not_starts_with: String """All values ending with the given string.""" frez_ends_with: String """All values not ending with the given string.""" frez_not_ends_with: String nakl: String """All values that are not equal to given value.""" nakl_not: String """All values that are contained in given list.""" nakl_in: [String!] """All values that are not contained in given list.""" nakl_not_in: [String!] """All values less than the given value.""" nakl_lt: String """All values less than or equal the given value.""" nakl_lte: String """All values greater than the given value.""" nakl_gt: String """All values greater than or equal the given value.""" nakl_gte: String """All values containing the given string.""" nakl_contains: String """All values not containing the given string.""" nakl_not_contains: String """All values starting with the given string.""" nakl_starts_with: String """All values not starting with the given string.""" nakl_not_starts_with: String """All values ending with the given string.""" nakl_ends_with: String """All values not ending with the given string.""" nakl_not_ends_with: String bitkin: String """All values that are not equal to given value.""" bitkin_not: String """All values that are contained in given list.""" bitkin_in: [String!] """All values that are not contained in given list.""" bitkin_not_in: [String!] """All values less than the given value.""" bitkin_lt: String """All values less than or equal the given value.""" bitkin_lte: String """All values greater than the given value.""" bitkin_gt: String """All values greater than or equal the given value.""" bitkin_gte: String """All values containing the given string.""" bitkin_contains: String """All values not containing the given string.""" bitkin_not_contains: String """All values starting with the given string.""" bitkin_starts_with: String """All values not starting with the given string.""" bitkin_not_starts_with: String """All values ending with the given string.""" bitkin_ends_with: String """All values not ending with the given string.""" bitkin_not_ends_with: String expertize: String """All values that are not equal to given value.""" expertize_not: String """All values that are contained in given list.""" expertize_in: [String!] """All values that are not contained in given list.""" expertize_not_in: [String!] """All values less than the given value.""" expertize_lt: String """All values less than or equal the given value.""" expertize_lte: String """All values greater than the given value.""" expertize_gt: String """All values greater than or equal the given value.""" expertize_gte: String """All values containing the given string.""" expertize_contains: String """All values not containing the given string.""" expertize_not_contains: String """All values starting with the given string.""" expertize_starts_with: String """All values not starting with the given string.""" expertize_not_starts_with: String """All values ending with the given string.""" expertize_ends_with: String """All values not ending with the given string.""" expertize_not_ends_with: String slab: String """All values that are not equal to given value.""" slab_not: String """All values that are contained in given list.""" slab_in: [String!] """All values that are not contained in given list.""" slab_not_in: [String!] """All values less than the given value.""" slab_lt: String """All values less than or equal the given value.""" slab_lte: String """All values greater than the given value.""" slab_gt: String """All values greater than or equal the given value.""" slab_gte: String """All values containing the given string.""" slab_contains: String """All values not containing the given string.""" slab_not_contains: String """All values starting with the given string.""" slab_starts_with: String """All values not starting with the given string.""" slab_not_starts_with: String """All values ending with the given string.""" slab_ends_with: String """All values not ending with the given string.""" slab_not_ends_with: String Order: OrderWhereInput ServiceOrders_every: ServiceOrderWhereInput ServiceOrders_some: ServiceOrderWhereInput ServiceOrders_none: ServiceOrderWhereInput Expertises_every: ExpertiseWhereInput Expertises_some: ExpertiseWhereInput Expertises_none: ExpertiseWhereInput InvoiceItems_every: InvoiceItemWhereInput InvoiceItems_some: InvoiceItemWhereInput InvoiceItems_none: InvoiceItemWhereInput } input OrderItemWhereUniqueInput { id: ID secondID: ID externalKey: Int } enum OrderOrderByInput { id_ASC id_DESC secondID_ASC secondID_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC number_ASC number_DESC date_ASC date_DESC archived_ASC archived_DESC } type OrderPreviousValues { id: ID! secondID: ID createdAt: DateTime! updatedAt: DateTime! number: Int! date: DateTime archived: Boolean } type OrderResponse { success: Boolean! message: String errors: [Error!]! data: Order } type OrderSubscriptionPayload { mutation: MutationType! node: Order updatedFields: [String!] previousValues: OrderPreviousValues } input OrderSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [OrderSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [OrderSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [OrderSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: OrderWhereInput } input OrderUpdateInput { secondID: ID number: ID date: DateTime User: UserUpdateOneWithoutOrdersInput Items: OrderItemUpdateManyWithoutOrderInput itemsDirty: Json archived: Boolean } input OrderUpdateManyWithoutUserInput { connect: [OrderWhereUniqueInput!] disconnect: [OrderWhereUniqueInput!] } input OrderUpdateOneWithoutInvoiceInput { connect: OrderWhereUniqueInput disconnect: Boolean } input OrderUpdateOneWithoutItemsInput { connect: OrderWhereUniqueInput } input OrderUpdateWithoutInvoiceDataInput { secondID: ID number: Int date: DateTime archived: Boolean User: UserUpdateOneWithoutOrdersInput Items: OrderItemUpdateManyWithoutOrderInput } input OrderUpdateWithoutItemsDataInput { secondID: ID number: Int date: DateTime archived: Boolean User: UserUpdateOneWithoutOrdersInput Invoice: InvoiceUpdateOneWithoutOrderInput } input OrderUpdateWithoutUserDataInput { secondID: ID number: Int date: DateTime archived: Boolean Items: OrderItemUpdateManyWithoutOrderInput Invoice: InvoiceUpdateOneWithoutOrderInput } input OrderUpdateWithWhereUniqueWithoutUserInput { where: OrderWhereUniqueInput! data: OrderUpdateWithoutUserDataInput! } input OrderUpsertWithWhereUniqueWithoutUserInput { where: OrderWhereUniqueInput! } input OrderWhereInput { search: String """Logical AND on all given filters.""" AND: [OrderWhereInput!] """Logical OR on all given filters.""" OR: [OrderWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [OrderWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID secondID: ID """All values that are not equal to given value.""" secondID_not: ID """All values that are contained in given list.""" secondID_in: [ID!] """All values that are not contained in given list.""" secondID_not_in: [ID!] """All values less than the given value.""" secondID_lt: ID """All values less than or equal the given value.""" secondID_lte: ID """All values greater than the given value.""" secondID_gt: ID """All values greater than or equal the given value.""" secondID_gte: ID """All values containing the given string.""" secondID_contains: ID """All values not containing the given string.""" secondID_not_contains: ID """All values starting with the given string.""" secondID_starts_with: ID """All values not starting with the given string.""" secondID_not_starts_with: ID """All values ending with the given string.""" secondID_ends_with: ID """All values not ending with the given string.""" secondID_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime number: Int """All values that are not equal to given value.""" number_not: Int """All values that are contained in given list.""" number_in: [Int!] """All values that are not contained in given list.""" number_not_in: [Int!] """All values less than the given value.""" number_lt: Int """All values less than or equal the given value.""" number_lte: Int """All values greater than the given value.""" number_gt: Int """All values greater than or equal the given value.""" number_gte: Int date: DateTime """All values that are not equal to given value.""" date_not: DateTime """All values that are contained in given list.""" date_in: [DateTime!] """All values that are not contained in given list.""" date_not_in: [DateTime!] """All values less than the given value.""" date_lt: DateTime """All values less than or equal the given value.""" date_lte: DateTime """All values greater than the given value.""" date_gt: DateTime """All values greater than or equal the given value.""" date_gte: DateTime archived: Boolean """All values that are not equal to given value.""" archived_not: Boolean User: UserWhereInput Items_every: OrderItemWhereInput Items_some: OrderItemWhereInput Items_none: OrderItemWhereInput Invoice: InvoiceWhereInput } input OrderWhereUniqueInput { id: ID secondID: ID number: Int } """Information about pagination in a connection.""" type PageInfo { """When paginating forwards, are there more items?""" hasNextPage: Boolean! """When paginating backwards, are there more items?""" hasPreviousPage: Boolean! """When paginating backwards, the cursor to continue.""" startCursor: String """When paginating forwards, the cursor to continue.""" endCursor: String } type Position implements Node { id: ID! code: ID name: String! CreatedBy(where: UserWhereInput): User! Users(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User!] } """A connection to a list of items.""" type PositionConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [PositionEdge]! aggregate: AggregatePosition! } input PositionCreateInput { code: ID name: String! Users: UserCreateManyWithoutPositionsInput } input PositionCreateManyWithoutCreatedByInput { connect: [PositionWhereUniqueInput!] } input PositionCreateManyWithoutUsersInput { connect: [PositionWhereUniqueInput!] } input PositionCreateWithoutCreatedByInput { code: ID name: String! Users: UserCreateManyWithoutPositionsInput } input PositionCreateWithoutUsersInput { code: ID name: String! CreatedBy: UserCreateOneWithoutPositionsCreatedInput! } """An edge in a connection.""" type PositionEdge { """The item at the end of the edge.""" node: Position! """A cursor for use in pagination.""" cursor: String! } enum PositionOrderByInput { id_ASC id_DESC code_ASC code_DESC name_ASC name_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } type PositionPreviousValues { id: ID! code: ID name: String! } type PositionResponse { success: Boolean! message: String errors: [Error!]! data: Position } type PositionSubscriptionPayload { mutation: MutationType! node: Position updatedFields: [String!] previousValues: PositionPreviousValues } input PositionSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [PositionSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [PositionSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [PositionSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: PositionWhereInput } input PositionUpdateInput { code: ID name: String Users: UserUpdateManyWithoutPositionsInput } input PositionUpdateManyWithoutCreatedByInput { connect: [PositionWhereUniqueInput!] disconnect: [PositionWhereUniqueInput!] } input PositionUpdateManyWithoutUsersInput { connect: [PositionWhereUniqueInput!] disconnect: [PositionWhereUniqueInput!] } input PositionUpdateWithoutCreatedByDataInput { code: ID name: String Users: UserUpdateManyWithoutPositionsInput } input PositionUpdateWithoutUsersDataInput { code: ID name: String CreatedBy: UserUpdateOneWithoutPositionsCreatedInput } input PositionUpdateWithWhereUniqueWithoutCreatedByInput { where: PositionWhereUniqueInput! data: PositionUpdateWithoutCreatedByDataInput! } input PositionUpdateWithWhereUniqueWithoutUsersInput { where: PositionWhereUniqueInput! data: PositionUpdateWithoutUsersDataInput! } input PositionUpsertWithWhereUniqueWithoutCreatedByInput { where: PositionWhereUniqueInput! } input PositionUpsertWithWhereUniqueWithoutUsersInput { where: PositionWhereUniqueInput! } input PositionWhereInput { """Logical AND on all given filters.""" AND: [PositionWhereInput!] """Logical OR on all given filters.""" OR: [PositionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [PositionWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID code: ID """All values that are not equal to given value.""" code_not: ID """All values that are contained in given list.""" code_in: [ID!] """All values that are not contained in given list.""" code_not_in: [ID!] """All values less than the given value.""" code_lt: ID """All values less than or equal the given value.""" code_lte: ID """All values greater than the given value.""" code_gt: ID """All values greater than or equal the given value.""" code_gte: ID """All values containing the given string.""" code_contains: ID """All values not containing the given string.""" code_not_contains: ID """All values starting with the given string.""" code_starts_with: ID """All values not starting with the given string.""" code_not_starts_with: ID """All values ending with the given string.""" code_ends_with: ID """All values not ending with the given string.""" code_not_ends_with: ID name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String CreatedBy: UserWhereInput Users_every: UserWhereInput Users_some: UserWhereInput Users_none: UserWhereInput } input PositionWhereUniqueInput { id: ID code: ID } type Project implements Node { id: ID! domain: String PrismaResources(where: ResourceWhereInput, orderBy: ResourceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Resource!] createdAt: DateTime! updatedAt: DateTime! name: String! description: String url: String Members(where: ProjectMemberWhereInput, orderBy: ProjectMemberOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ProjectMember!] CreatedBy(where: UserWhereInput): User! Tasks(where: TaskWhereInput, orderBy: TaskOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Task!] Team(where: TeamWhereInput): Team Customers(where: TeamWhereInput, orderBy: TeamOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Team!] ChatRoom(where: ChatRoomWhereInput): ChatRoom sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean PrismaTemplates(where: TemplateWhereInput, orderBy: TemplateOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Template!] PrismaUsers(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User!] } """A connection to a list of items.""" type ProjectConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [ProjectEdge]! aggregate: AggregateProject! } input ProjectCreateInput { domain: String name: String! description: String url: String content: Json contentText: String status: ProjectStatus public: Boolean Members: ProjectMemberCreateManyWithoutProjectInput Team: TeamCreateOneWithoutProjectsInput Customers: TeamCreateManyWithoutOrderedProjectsInput } input ProjectCreateManyWithoutCreatedByInput { connect: [ProjectWhereUniqueInput!] } input ProjectCreateManyWithoutCustomersInput { connect: [ProjectWhereUniqueInput!] } input ProjectCreateManyWithoutTeamInput { connect: [ProjectWhereUniqueInput!] } input ProjectCreateOneInput { connect: ProjectWhereUniqueInput } input ProjectCreateOneWithoutMembersInput { connect: ProjectWhereUniqueInput } input ProjectCreateOneWithoutPrismaResourcesInput { connect: ProjectWhereUniqueInput } input ProjectCreateOneWithoutPrismaTemplatesInput { connect: ProjectWhereUniqueInput } input ProjectCreateOneWithoutTasksInput { connect: ProjectWhereUniqueInput } input ProjectCreateWithoutCreatedByInput { domain: String name: String! description: String url: String sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean PrismaResources: ResourceCreateManyWithoutPrismaProjectInput Members: ProjectMemberCreateManyWithoutProjectInput Tasks: TaskCreateManyWithoutProjectInput Team: TeamCreateOneWithoutProjectsInput Customers: TeamCreateManyWithoutOrderedProjectsInput ChatRoom: ChatRoomCreateOneInput PrismaTemplates: TemplateCreateManyWithoutPrismaProjectInput PrismaUsers: UserCreateManyInput } input ProjectCreateWithoutCustomersInput { domain: String name: String! description: String url: String sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean PrismaResources: ResourceCreateManyWithoutPrismaProjectInput Members: ProjectMemberCreateManyWithoutProjectInput CreatedBy: UserCreateOneWithoutProjectsCreatedInput! Tasks: TaskCreateManyWithoutProjectInput Team: TeamCreateOneWithoutProjectsInput ChatRoom: ChatRoomCreateOneInput PrismaTemplates: TemplateCreateManyWithoutPrismaProjectInput PrismaUsers: UserCreateManyInput } input ProjectCreateWithoutMembersInput { domain: String name: String! description: String url: String sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean PrismaResources: ResourceCreateManyWithoutPrismaProjectInput CreatedBy: UserCreateOneWithoutProjectsCreatedInput! Tasks: TaskCreateManyWithoutProjectInput Team: TeamCreateOneWithoutProjectsInput Customers: TeamCreateManyWithoutOrderedProjectsInput ChatRoom: ChatRoomCreateOneInput PrismaTemplates: TemplateCreateManyWithoutPrismaProjectInput PrismaUsers: UserCreateManyInput } input ProjectCreateWithoutPrismaResourcesInput { domain: String name: String! description: String url: String sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean Members: ProjectMemberCreateManyWithoutProjectInput CreatedBy: UserCreateOneWithoutProjectsCreatedInput! Tasks: TaskCreateManyWithoutProjectInput Team: TeamCreateOneWithoutProjectsInput Customers: TeamCreateManyWithoutOrderedProjectsInput ChatRoom: ChatRoomCreateOneInput PrismaTemplates: TemplateCreateManyWithoutPrismaProjectInput PrismaUsers: UserCreateManyInput } input ProjectCreateWithoutPrismaTemplatesInput { domain: String name: String! description: String url: String sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean PrismaResources: ResourceCreateManyWithoutPrismaProjectInput Members: ProjectMemberCreateManyWithoutProjectInput CreatedBy: UserCreateOneWithoutProjectsCreatedInput! Tasks: TaskCreateManyWithoutProjectInput Team: TeamCreateOneWithoutProjectsInput Customers: TeamCreateManyWithoutOrderedProjectsInput ChatRoom: ChatRoomCreateOneInput PrismaUsers: UserCreateManyInput } input ProjectCreateWithoutTasksInput { domain: String name: String! description: String url: String sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean PrismaResources: ResourceCreateManyWithoutPrismaProjectInput Members: ProjectMemberCreateManyWithoutProjectInput CreatedBy: UserCreateOneWithoutProjectsCreatedInput! Team: TeamCreateOneWithoutProjectsInput Customers: TeamCreateManyWithoutOrderedProjectsInput ChatRoom: ChatRoomCreateOneInput PrismaTemplates: TemplateCreateManyWithoutPrismaProjectInput PrismaUsers: UserCreateManyInput } input ProjectCreateWithoutTeamInput { domain: String name: String! description: String url: String sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean PrismaResources: ResourceCreateManyWithoutPrismaProjectInput Members: ProjectMemberCreateManyWithoutProjectInput CreatedBy: UserCreateOneWithoutProjectsCreatedInput! Tasks: TaskCreateManyWithoutProjectInput Customers: TeamCreateManyWithoutOrderedProjectsInput ChatRoom: ChatRoomCreateOneInput PrismaTemplates: TemplateCreateManyWithoutPrismaProjectInput PrismaUsers: UserCreateManyInput } """An edge in a connection.""" type ProjectEdge { """The item at the end of the edge.""" node: Project! """A cursor for use in pagination.""" cursor: String! } type ProjectMember implements Node { id: ID! CreatedBy(where: UserWhereInput): User! Project(where: ProjectWhereInput): Project! User(where: UserWhereInput): User! Services(where: ServiceWhereInput, orderBy: ServiceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Service!] status: ProjectMemberStatus } """A connection to a list of items.""" type ProjectMemberConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [ProjectMemberEdge]! aggregate: AggregateProjectMember! } input ProjectMemberCreateInput { status: ProjectMemberStatus = Active Project: ProjectCreateOneWithoutMembersInput! User: UserCreateOneWithoutProjectsInput! Services: ServiceCreateManyWithoutProjectsInput } input ProjectMemberCreateManyWithoutProjectInput { connect: [ProjectMemberWhereUniqueInput!] } input ProjectMemberCreateManyWithoutUserInput { connect: [ProjectMemberWhereUniqueInput!] } input ProjectMemberCreateWithoutProjectInput { status: ProjectMemberStatus CreatedBy: UserCreateOneInput! User: UserCreateOneWithoutProjectsInput! Services: ServiceCreateManyInput } input ProjectMemberCreateWithoutUserInput { status: ProjectMemberStatus CreatedBy: UserCreateOneInput! Project: ProjectCreateOneWithoutMembersInput! Services: ServiceCreateManyInput } """An edge in a connection.""" type ProjectMemberEdge { """The item at the end of the edge.""" node: ProjectMember! """A cursor for use in pagination.""" cursor: String! } enum ProjectMemberOrderByInput { id_ASC id_DESC status_ASC status_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } type ProjectMemberPreviousValues { id: ID! status: ProjectMemberStatus } type ProjectMemberResponse { success: Boolean! message: String errors: [Error!]! data: ProjectMember } enum ProjectMemberStatus { Invited Active Fired Quit } type ProjectMemberSubscriptionPayload { mutation: MutationType! node: ProjectMember updatedFields: [String!] previousValues: ProjectMemberPreviousValues } input ProjectMemberSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [ProjectMemberSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [ProjectMemberSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ProjectMemberSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: ProjectMemberWhereInput } input ProjectMemberUpdateInput { status: ProjectMemberStatus Services: ServiceUpdateManyWithoutProjectsInput } input ProjectMemberUpdateManyWithoutProjectInput { connect: [ProjectMemberWhereUniqueInput!] disconnect: [ProjectMemberWhereUniqueInput!] } input ProjectMemberUpdateManyWithoutUserInput { connect: [ProjectMemberWhereUniqueInput!] disconnect: [ProjectMemberWhereUniqueInput!] } input ProjectMemberUpdateWithoutProjectDataInput { status: ProjectMemberStatus CreatedBy: UserUpdateOneInput User: UserUpdateOneWithoutProjectsInput Services: ServiceUpdateManyInput } input ProjectMemberUpdateWithoutUserDataInput { status: ProjectMemberStatus CreatedBy: UserUpdateOneInput Project: ProjectUpdateOneWithoutMembersInput Services: ServiceUpdateManyInput } input ProjectMemberUpdateWithWhereUniqueWithoutProjectInput { where: ProjectMemberWhereUniqueInput! data: ProjectMemberUpdateWithoutProjectDataInput! } input ProjectMemberUpdateWithWhereUniqueWithoutUserInput { where: ProjectMemberWhereUniqueInput! data: ProjectMemberUpdateWithoutUserDataInput! } input ProjectMemberUpsertWithWhereUniqueWithoutProjectInput { where: ProjectMemberWhereUniqueInput! } input ProjectMemberUpsertWithWhereUniqueWithoutUserInput { where: ProjectMemberWhereUniqueInput! } input ProjectMemberWhereInput { """Logical AND on all given filters.""" AND: [ProjectMemberWhereInput!] """Logical OR on all given filters.""" OR: [ProjectMemberWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ProjectMemberWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID status: ProjectMemberStatus """All values that are not equal to given value.""" status_not: ProjectMemberStatus """All values that are contained in given list.""" status_in: [ProjectMemberStatus!] """All values that are not contained in given list.""" status_not_in: [ProjectMemberStatus!] CreatedBy: UserWhereInput Project: ProjectWhereInput User: UserWhereInput Services_every: ServiceWhereInput Services_some: ServiceWhereInput Services_none: ServiceWhereInput } input ProjectMemberWhereUniqueInput { id: ID } enum ProjectOrderByInput { id_ASC id_DESC domain_ASC domain_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC name_ASC name_DESC description_ASC description_DESC url_ASC url_DESC sequence_ASC sequence_DESC content_ASC content_DESC contentText_ASC contentText_DESC status_ASC status_DESC public_ASC public_DESC } type ProjectPreviousValues { id: ID! domain: String createdAt: DateTime! updatedAt: DateTime! name: String! description: String url: String sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean } type ProjectResponse { success: Boolean! message: String errors: [Error!]! data: Project } enum ProjectStatus { New Accepted Rejected Processing Completed Reopened } type ProjectSubscriptionPayload { mutation: MutationType! node: Project updatedFields: [String!] previousValues: ProjectPreviousValues } input ProjectSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [ProjectSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [ProjectSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ProjectSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: ProjectWhereInput } input ProjectUpdateDataInput { domain: String name: String description: String url: String sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean PrismaResources: ResourceUpdateManyWithoutPrismaProjectInput Members: ProjectMemberUpdateManyWithoutProjectInput CreatedBy: UserUpdateOneWithoutProjectsCreatedInput Tasks: TaskUpdateManyWithoutProjectInput Team: TeamUpdateOneWithoutProjectsInput Customers: TeamUpdateManyWithoutOrderedProjectsInput ChatRoom: ChatRoomUpdateOneInput PrismaTemplates: TemplateUpdateManyWithoutPrismaProjectInput PrismaUsers: UserUpdateManyInput } input ProjectUpdateInput { domain: String name: String description: String url: String content: Json contentText: String status: ProjectStatus public: Boolean Members: ProjectMemberUpdateManyWithoutProjectInput Team: TeamUpdateOneWithoutProjectsInput Customers: TeamUpdateManyWithoutOrderedProjectsInput } input ProjectUpdateManyWithoutCreatedByInput { connect: [ProjectWhereUniqueInput!] disconnect: [ProjectWhereUniqueInput!] } input ProjectUpdateManyWithoutCustomersInput { connect: [ProjectWhereUniqueInput!] disconnect: [ProjectWhereUniqueInput!] } input ProjectUpdateManyWithoutTeamInput { connect: [ProjectWhereUniqueInput!] disconnect: [ProjectWhereUniqueInput!] } input ProjectUpdateOneInput { connect: ProjectWhereUniqueInput disconnect: Boolean } input ProjectUpdateOneWithoutMembersInput { connect: ProjectWhereUniqueInput } input ProjectUpdateOneWithoutPrismaResourcesInput { connect: ProjectWhereUniqueInput disconnect: Boolean } input ProjectUpdateOneWithoutPrismaTemplatesInput { connect: ProjectWhereUniqueInput disconnect: Boolean } input ProjectUpdateOneWithoutTasksInput { connect: ProjectWhereUniqueInput } input ProjectUpdateWithoutCreatedByDataInput { domain: String name: String description: String url: String sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean PrismaResources: ResourceUpdateManyWithoutPrismaProjectInput Members: ProjectMemberUpdateManyWithoutProjectInput Tasks: TaskUpdateManyWithoutProjectInput Team: TeamUpdateOneWithoutProjectsInput Customers: TeamUpdateManyWithoutOrderedProjectsInput ChatRoom: ChatRoomUpdateOneInput PrismaTemplates: TemplateUpdateManyWithoutPrismaProjectInput PrismaUsers: UserUpdateManyInput } input ProjectUpdateWithoutCustomersDataInput { domain: String name: String description: String url: String sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean PrismaResources: ResourceUpdateManyWithoutPrismaProjectInput Members: ProjectMemberUpdateManyWithoutProjectInput CreatedBy: UserUpdateOneWithoutProjectsCreatedInput Tasks: TaskUpdateManyWithoutProjectInput Team: TeamUpdateOneWithoutProjectsInput ChatRoom: ChatRoomUpdateOneInput PrismaTemplates: TemplateUpdateManyWithoutPrismaProjectInput PrismaUsers: UserUpdateManyInput } input ProjectUpdateWithoutMembersDataInput { domain: String name: String description: String url: String sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean PrismaResources: ResourceUpdateManyWithoutPrismaProjectInput CreatedBy: UserUpdateOneWithoutProjectsCreatedInput Tasks: TaskUpdateManyWithoutProjectInput Team: TeamUpdateOneWithoutProjectsInput Customers: TeamUpdateManyWithoutOrderedProjectsInput ChatRoom: ChatRoomUpdateOneInput PrismaTemplates: TemplateUpdateManyWithoutPrismaProjectInput PrismaUsers: UserUpdateManyInput } input ProjectUpdateWithoutPrismaResourcesDataInput { domain: String name: String description: String url: String sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean Members: ProjectMemberUpdateManyWithoutProjectInput CreatedBy: UserUpdateOneWithoutProjectsCreatedInput Tasks: TaskUpdateManyWithoutProjectInput Team: TeamUpdateOneWithoutProjectsInput Customers: TeamUpdateManyWithoutOrderedProjectsInput ChatRoom: ChatRoomUpdateOneInput PrismaTemplates: TemplateUpdateManyWithoutPrismaProjectInput PrismaUsers: UserUpdateManyInput } input ProjectUpdateWithoutPrismaTemplatesDataInput { domain: String name: String description: String url: String sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean PrismaResources: ResourceUpdateManyWithoutPrismaProjectInput Members: ProjectMemberUpdateManyWithoutProjectInput CreatedBy: UserUpdateOneWithoutProjectsCreatedInput Tasks: TaskUpdateManyWithoutProjectInput Team: TeamUpdateOneWithoutProjectsInput Customers: TeamUpdateManyWithoutOrderedProjectsInput ChatRoom: ChatRoomUpdateOneInput PrismaUsers: UserUpdateManyInput } input ProjectUpdateWithoutTasksDataInput { domain: String name: String description: String url: String sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean PrismaResources: ResourceUpdateManyWithoutPrismaProjectInput Members: ProjectMemberUpdateManyWithoutProjectInput CreatedBy: UserUpdateOneWithoutProjectsCreatedInput Team: TeamUpdateOneWithoutProjectsInput Customers: TeamUpdateManyWithoutOrderedProjectsInput ChatRoom: ChatRoomUpdateOneInput PrismaTemplates: TemplateUpdateManyWithoutPrismaProjectInput PrismaUsers: UserUpdateManyInput } input ProjectUpdateWithoutTeamDataInput { domain: String name: String description: String url: String sequence: Int content: Json contentText: String status: ProjectStatus public: Boolean PrismaResources: ResourceUpdateManyWithoutPrismaProjectInput Members: ProjectMemberUpdateManyWithoutProjectInput CreatedBy: UserUpdateOneWithoutProjectsCreatedInput Tasks: TaskUpdateManyWithoutProjectInput Customers: TeamUpdateManyWithoutOrderedProjectsInput ChatRoom: ChatRoomUpdateOneInput PrismaTemplates: TemplateUpdateManyWithoutPrismaProjectInput PrismaUsers: UserUpdateManyInput } input ProjectUpdateWithWhereUniqueWithoutCreatedByInput { where: ProjectWhereUniqueInput! data: ProjectUpdateWithoutCreatedByDataInput! } input ProjectUpdateWithWhereUniqueWithoutCustomersInput { where: ProjectWhereUniqueInput! data: ProjectUpdateWithoutCustomersDataInput! } input ProjectUpdateWithWhereUniqueWithoutTeamInput { where: ProjectWhereUniqueInput! data: ProjectUpdateWithoutTeamDataInput! } input ProjectUpsertWithWhereUniqueWithoutCreatedByInput { where: ProjectWhereUniqueInput! } input ProjectUpsertWithWhereUniqueWithoutCustomersInput { where: ProjectWhereUniqueInput! } input ProjectUpsertWithWhereUniqueWithoutTeamInput { where: ProjectWhereUniqueInput! } input ProjectWhereInput { """Logical AND on all given filters.""" AND: [ProjectWhereInput!] """Logical OR on all given filters.""" OR: [ProjectWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ProjectWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID domain: String """All values that are not equal to given value.""" domain_not: String """All values that are contained in given list.""" domain_in: [String!] """All values that are not contained in given list.""" domain_not_in: [String!] """All values less than the given value.""" domain_lt: String """All values less than or equal the given value.""" domain_lte: String """All values greater than the given value.""" domain_gt: String """All values greater than or equal the given value.""" domain_gte: String """All values containing the given string.""" domain_contains: String """All values not containing the given string.""" domain_not_contains: String """All values starting with the given string.""" domain_starts_with: String """All values not starting with the given string.""" domain_not_starts_with: String """All values ending with the given string.""" domain_ends_with: String """All values not ending with the given string.""" domain_not_ends_with: String createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String description: String """All values that are not equal to given value.""" description_not: String """All values that are contained in given list.""" description_in: [String!] """All values that are not contained in given list.""" description_not_in: [String!] """All values less than the given value.""" description_lt: String """All values less than or equal the given value.""" description_lte: String """All values greater than the given value.""" description_gt: String """All values greater than or equal the given value.""" description_gte: String """All values containing the given string.""" description_contains: String """All values not containing the given string.""" description_not_contains: String """All values starting with the given string.""" description_starts_with: String """All values not starting with the given string.""" description_not_starts_with: String """All values ending with the given string.""" description_ends_with: String """All values not ending with the given string.""" description_not_ends_with: String url: String """All values that are not equal to given value.""" url_not: String """All values that are contained in given list.""" url_in: [String!] """All values that are not contained in given list.""" url_not_in: [String!] """All values less than the given value.""" url_lt: String """All values less than or equal the given value.""" url_lte: String """All values greater than the given value.""" url_gt: String """All values greater than or equal the given value.""" url_gte: String """All values containing the given string.""" url_contains: String """All values not containing the given string.""" url_not_contains: String """All values starting with the given string.""" url_starts_with: String """All values not starting with the given string.""" url_not_starts_with: String """All values ending with the given string.""" url_ends_with: String """All values not ending with the given string.""" url_not_ends_with: String sequence: Int """All values that are not equal to given value.""" sequence_not: Int """All values that are contained in given list.""" sequence_in: [Int!] """All values that are not contained in given list.""" sequence_not_in: [Int!] """All values less than the given value.""" sequence_lt: Int """All values less than or equal the given value.""" sequence_lte: Int """All values greater than the given value.""" sequence_gt: Int """All values greater than or equal the given value.""" sequence_gte: Int contentText: String """All values that are not equal to given value.""" contentText_not: String """All values that are contained in given list.""" contentText_in: [String!] """All values that are not contained in given list.""" contentText_not_in: [String!] """All values less than the given value.""" contentText_lt: String """All values less than or equal the given value.""" contentText_lte: String """All values greater than the given value.""" contentText_gt: String """All values greater than or equal the given value.""" contentText_gte: String """All values containing the given string.""" contentText_contains: String """All values not containing the given string.""" contentText_not_contains: String """All values starting with the given string.""" contentText_starts_with: String """All values not starting with the given string.""" contentText_not_starts_with: String """All values ending with the given string.""" contentText_ends_with: String """All values not ending with the given string.""" contentText_not_ends_with: String status: ProjectStatus """All values that are not equal to given value.""" status_not: ProjectStatus """All values that are contained in given list.""" status_in: [ProjectStatus!] """All values that are not contained in given list.""" status_not_in: [ProjectStatus!] public: Boolean """All values that are not equal to given value.""" public_not: Boolean PrismaResources_every: ResourceWhereInput PrismaResources_some: ResourceWhereInput PrismaResources_none: ResourceWhereInput Members_every: ProjectMemberWhereInput Members_some: ProjectMemberWhereInput Members_none: ProjectMemberWhereInput CreatedBy: UserWhereInput Tasks_every: TaskWhereInput Tasks_some: TaskWhereInput Tasks_none: TaskWhereInput Team: TeamWhereInput Customers_every: TeamWhereInput Customers_some: TeamWhereInput Customers_none: TeamWhereInput ChatRoom: ChatRoomWhereInput PrismaTemplates_every: TemplateWhereInput PrismaTemplates_some: TemplateWhereInput PrismaTemplates_none: TemplateWhereInput PrismaUsers_every: UserWhereInput PrismaUsers_some: UserWhereInput PrismaUsers_none: UserWhereInput """Поиск по нескольким полям""" search: String """Только активные проекты""" active_only: Boolean } input ProjectWhereUniqueInput { id: ID domain: String sequence: Int } type Query { getUrlBySlab(slab: String!): String! me: User getUserToken(userId: ID!): String serviceOrderSlabPenalty(where: ServiceOrderWhereUniqueInput!): Float! invoices(where: InvoiceWhereInput, orderBy: InvoiceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Invoice]! invoiceItems(where: InvoiceItemWhereInput, orderBy: InvoiceItemOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [InvoiceItem]! files(where: FileWhereInput, orderBy: FileOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [File]! logs(where: LogWhereInput, orderBy: LogOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Log]! userGroups(where: UserGroupWhereInput, orderBy: UserGroupOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [UserGroup]! resources(where: ResourceWhereInput, orderBy: ResourceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Resource]! notices(where: NoticeWhereInput, orderBy: NoticeOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Notice]! notificationTypes(where: NotificationTypeWhereInput, orderBy: NotificationTypeOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [NotificationType]! resourceTags(where: ResourceTagWhereInput, orderBy: ResourceTagOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ResourceTag]! tags(where: TagWhereInput, orderBy: TagOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Tag]! votes(where: VoteWhereInput, orderBy: VoteOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Vote]! positions(where: PositionWhereInput, orderBy: PositionOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Position]! projectMembers(where: ProjectMemberWhereInput, orderBy: ProjectMemberOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ProjectMember]! tasks(where: TaskWhereInput, orderBy: TaskOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Task]! taskReactions(where: TaskReactionWhereInput, orderBy: TaskReactionOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [TaskReaction]! teamMembers(where: TeamMemberWhereInput, orderBy: TeamMemberOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [TeamMember]! timers(where: TimerWhereInput, orderBy: TimerOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Timer]! routes(where: RouteWhereInput, orderBy: RouteOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Route]! discountGroups(where: DiscountGroupWhereInput, orderBy: DiscountGroupOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [DiscountGroup]! expertises(where: ExpertiseWhereInput, orderBy: ExpertiseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Expertise]! expertisers(where: ExpertiserWhereInput, orderBy: ExpertiserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Expertiser]! orders(where: OrderWhereInput, orderBy: OrderOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Order]! orderItems(where: OrderItemWhereInput, orderBy: OrderItemOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [OrderItem]! tarifs(where: TarifWhereInput, orderBy: TarifOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Tarif]! teams(where: TeamWhereInput, orderBy: TeamOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Team]! projects(where: ProjectWhereInput, orderBy: ProjectOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Project]! chatRooms(where: ChatRoomWhereInput, orderBy: ChatRoomOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ChatRoom]! templates(where: TemplateWhereInput, orderBy: TemplateOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Template]! services(where: ServiceWhereInput, orderBy: ServiceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Service]! users(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User]! invoice(where: InvoiceWhereUniqueInput!): Invoice invoiceItem(where: InvoiceItemWhereUniqueInput!): InvoiceItem file(where: FileWhereUniqueInput!): File log(where: LogWhereUniqueInput!): Log resource(where: ResourceWhereUniqueInput!): Resource notice(where: NoticeWhereUniqueInput!): Notice notificationType(where: NotificationTypeWhereUniqueInput!): NotificationType resourceTag(where: ResourceTagWhereUniqueInput!): ResourceTag tag(where: TagWhereUniqueInput!): Tag vote(where: VoteWhereUniqueInput!): Vote position(where: PositionWhereUniqueInput!): Position projectMember(where: ProjectMemberWhereUniqueInput!): ProjectMember task(where: TaskWhereUniqueInput!): Task taskReaction(where: TaskReactionWhereUniqueInput!): TaskReaction teamMember(where: TeamMemberWhereUniqueInput!): TeamMember timer(where: TimerWhereUniqueInput!): Timer route(where: RouteWhereUniqueInput!): Route discountGroup(where: DiscountGroupWhereUniqueInput!): DiscountGroup expertise(where: ExpertiseWhereUniqueInput!): Expertise expertiser(where: ExpertiserWhereUniqueInput!): Expertiser order(where: OrderWhereUniqueInput!): Order orderItem(where: OrderItemWhereUniqueInput!): OrderItem serviceOrder(where: ServiceOrderWhereUniqueInput!): ServiceOrder tarif(where: TarifWhereUniqueInput!): Tarif team(where: TeamWhereUniqueInput!): Team project(where: ProjectWhereUniqueInput!): Project chatRoom(where: ChatRoomWhereUniqueInput!): ChatRoom template(where: TemplateWhereUniqueInput!): Template service(where: ServiceWhereUniqueInput!): Service user(where: UserWhereUniqueInput!): User invoicesConnection(where: InvoiceWhereInput, orderBy: InvoiceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): InvoiceConnection! invoiceItemsConnection(where: InvoiceItemWhereInput, orderBy: InvoiceItemOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): InvoiceItemConnection! filesConnection(where: FileWhereInput, orderBy: FileOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): FileConnection! logsConnection(where: LogWhereInput, orderBy: LogOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): LogConnection! resourcesConnection(where: ResourceWhereInput, orderBy: ResourceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ResourceConnection! noticesConnection(where: NoticeWhereInput, orderBy: NoticeOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): NoticeConnection! notificationTypesConnection(where: NotificationTypeWhereInput, orderBy: NotificationTypeOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): NotificationTypeConnection! resourceTagsConnection(where: ResourceTagWhereInput, orderBy: ResourceTagOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ResourceTagConnection! tagsConnection(where: TagWhereInput, orderBy: TagOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TagConnection! votesConnection(where: VoteWhereInput, orderBy: VoteOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): VoteConnection! positionsConnection(where: PositionWhereInput, orderBy: PositionOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): PositionConnection! projectMembersConnection(where: ProjectMemberWhereInput, orderBy: ProjectMemberOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ProjectMemberConnection! tasksConnection(where: TaskWhereInput, orderBy: TaskOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TaskConnection! taskReactionsConnection(where: TaskReactionWhereInput, orderBy: TaskReactionOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TaskReactionConnection! teamMembersConnection(where: TeamMemberWhereInput, orderBy: TeamMemberOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TeamMemberConnection! timersConnection(where: TimerWhereInput, orderBy: TimerOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TimerConnection! routesConnection(where: RouteWhereInput, orderBy: RouteOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): RouteConnection! changesConnection(where: ChangeWhereInput, orderBy: ChangeOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ChangeConnection! discountGroupsConnection(where: DiscountGroupWhereInput, orderBy: DiscountGroupOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): DiscountGroupConnection! expertisesConnection(where: ExpertiseWhereInput, orderBy: ExpertiseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ExpertiseConnection! expertisersConnection(where: ExpertiserWhereInput, orderBy: ExpertiserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ExpertiserConnection! ordersConnection(where: OrderWhereInput, orderBy: OrderOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): OrderConnection! orderItemsConnection(where: OrderItemWhereInput, orderBy: OrderItemOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): OrderItemConnection! serviceOrdersConnection(where: ServiceOrderWhereInput, orderBy: ServiceOrderOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ServiceOrderConnection! tarifsConnection(where: TarifWhereInput, orderBy: TarifOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TarifConnection! teamsConnection(where: TeamWhereInput, orderBy: TeamOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TeamConnection! projectsConnection(where: ProjectWhereInput, orderBy: ProjectOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ProjectConnection! chatRoomsConnection(where: ChatRoomWhereInput, orderBy: ChatRoomOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ChatRoomConnection! templatesConnection(where: TemplateWhereInput, orderBy: TemplateOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TemplateConnection! servicesConnection(where: ServiceWhereInput, orderBy: ServiceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ServiceConnection! chatMessagesConnection(where: ChatMessageWhereInput, orderBy: ChatMessageOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ChatMessageConnection! usersConnection(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): UserConnection! } input RequestJoinUserInput { fullname: String! email: String! info: String } type RequestJoinUserResponse { success: Boolean! message: String errors: [Error!]! data: Boolean! } enum RequestType { GET POST DELETE OPTION } type ResetPassword implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! code: ID password: String validTill: DateTime User(where: UserWhereInput): User } """A connection to a list of items.""" type ResetPasswordConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [ResetPasswordEdge]! aggregate: AggregateResetPassword! } input ResetPasswordCreateInput { code: ID password: String validTill: DateTime User: UserCreateOneInput } """An edge in a connection.""" type ResetPasswordEdge { """The item at the end of the edge.""" node: ResetPassword! """A cursor for use in pagination.""" cursor: String! } input ResetPasswordInput { code: ID! } enum ResetPasswordOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC code_ASC code_DESC password_ASC password_DESC validTill_ASC validTill_DESC } type ResetPasswordPreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! code: ID password: String validTill: DateTime } type ResetPasswordResponse { success: Boolean! message: String errors: [Error!]! data: ResetPassword } type ResetPasswordSubscriptionPayload { mutation: MutationType! node: ResetPassword updatedFields: [String!] previousValues: ResetPasswordPreviousValues } input ResetPasswordSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [ResetPasswordSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [ResetPasswordSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ResetPasswordSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: ResetPasswordWhereInput } input ResetPasswordUpdateInput { code: ID password: String validTill: DateTime User: UserUpdateOneInput } input ResetPasswordWhereInput { """Logical AND on all given filters.""" AND: [ResetPasswordWhereInput!] """Logical OR on all given filters.""" OR: [ResetPasswordWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ResetPasswordWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime code: ID """All values that are not equal to given value.""" code_not: ID """All values that are contained in given list.""" code_in: [ID!] """All values that are not contained in given list.""" code_not_in: [ID!] """All values less than the given value.""" code_lt: ID """All values less than or equal the given value.""" code_lte: ID """All values greater than the given value.""" code_gt: ID """All values greater than or equal the given value.""" code_gte: ID """All values containing the given string.""" code_contains: ID """All values not containing the given string.""" code_not_contains: ID """All values starting with the given string.""" code_starts_with: ID """All values not starting with the given string.""" code_not_starts_with: ID """All values ending with the given string.""" code_ends_with: ID """All values not ending with the given string.""" code_not_ends_with: ID password: String """All values that are not equal to given value.""" password_not: String """All values that are contained in given list.""" password_in: [String!] """All values that are not contained in given list.""" password_not_in: [String!] """All values less than the given value.""" password_lt: String """All values less than or equal the given value.""" password_lte: String """All values greater than the given value.""" password_gt: String """All values greater than or equal the given value.""" password_gte: String """All values containing the given string.""" password_contains: String """All values not containing the given string.""" password_not_contains: String """All values starting with the given string.""" password_starts_with: String """All values not starting with the given string.""" password_not_starts_with: String """All values ending with the given string.""" password_ends_with: String """All values not ending with the given string.""" password_not_ends_with: String validTill: DateTime """All values that are not equal to given value.""" validTill_not: DateTime """All values that are contained in given list.""" validTill_in: [DateTime!] """All values that are not contained in given list.""" validTill_not_in: [DateTime!] """All values less than the given value.""" validTill_lt: DateTime """All values less than or equal the given value.""" validTill_lte: DateTime """All values greater than the given value.""" validTill_gt: DateTime """All values greater than or equal the given value.""" validTill_gte: DateTime User: UserWhereInput } input ResetPasswordWhereUniqueInput { id: ID code: ID } type Resource implements Node { id: ID! code: ID createdAt: DateTime! updatedAt: DateTime! type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean! deleted: Boolean! hidemenu: Boolean! searchable: Boolean! uri: String isfolder: Boolean! CreatedBy(where: UserWhereInput): User! Parent(where: ResourceWhereInput): Resource Childs(where: ResourceWhereInput, orderBy: ResourceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Resource!] Image(where: FileWhereInput): File PrismaProject(where: ProjectWhereInput): Project rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CommentTarget(where: ResourceWhereInput): Resource Comments(where: ResourceWhereInput, orderBy: ResourceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Resource!] Votes(where: VoteWhereInput, orderBy: VoteOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Vote!] Tags(where: ResourceTagWhereInput, orderBy: ResourceTagOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ResourceTag!] } """A connection to a list of items.""" type ResourceConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [ResourceEdge]! aggregate: AggregateResource! } input ResourceCreateInput { type: ResourceType code: ID name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean Parent: ResourceCreateOneWithoutChildsInput Childs: ResourceCreateManyWithoutParentInput Image: FileCreateOneWithoutImageResourceInput } input ResourceCreateManyWithoutCommentTargetInput { connect: [ResourceWhereUniqueInput!] } input ResourceCreateManyWithoutCreatedByInput { connect: [ResourceWhereUniqueInput!] } input ResourceCreateManyWithoutParentInput { connect: [ResourceWhereUniqueInput!] } input ResourceCreateManyWithoutPrismaProjectInput { connect: [ResourceWhereUniqueInput!] } input ResourceCreateOneWithoutChildsInput { connect: ResourceWhereUniqueInput } input ResourceCreateOneWithoutCommentsInput { connect: ResourceWhereUniqueInput } input ResourceCreateOneWithoutImageInput { connect: ResourceWhereUniqueInput } input ResourceCreateOneWithoutTagsInput { connect: ResourceWhereUniqueInput } input ResourceCreateOneWithoutVotesInput { connect: ResourceWhereUniqueInput } input ResourceCreateWithoutChildsInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CreatedBy: UserCreateOneWithoutResourcesInput! Parent: ResourceCreateOneWithoutChildsInput Image: FileCreateOneWithoutImageResourceInput PrismaProject: ProjectCreateOneWithoutPrismaResourcesInput CommentTarget: ResourceCreateOneWithoutCommentsInput Comments: ResourceCreateManyWithoutCommentTargetInput Votes: VoteCreateManyWithoutResourceInput Tags: ResourceTagCreateManyWithoutResourceInput } input ResourceCreateWithoutCommentsInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CreatedBy: UserCreateOneWithoutResourcesInput! Parent: ResourceCreateOneWithoutChildsInput Childs: ResourceCreateManyWithoutParentInput Image: FileCreateOneWithoutImageResourceInput PrismaProject: ProjectCreateOneWithoutPrismaResourcesInput CommentTarget: ResourceCreateOneWithoutCommentsInput Votes: VoteCreateManyWithoutResourceInput Tags: ResourceTagCreateManyWithoutResourceInput } input ResourceCreateWithoutCommentTargetInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CreatedBy: UserCreateOneWithoutResourcesInput! Parent: ResourceCreateOneWithoutChildsInput Childs: ResourceCreateManyWithoutParentInput Image: FileCreateOneWithoutImageResourceInput PrismaProject: ProjectCreateOneWithoutPrismaResourcesInput Comments: ResourceCreateManyWithoutCommentTargetInput Votes: VoteCreateManyWithoutResourceInput Tags: ResourceTagCreateManyWithoutResourceInput } input ResourceCreateWithoutCreatedByInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int Parent: ResourceCreateOneWithoutChildsInput Childs: ResourceCreateManyWithoutParentInput Image: FileCreateOneWithoutImageResourceInput PrismaProject: ProjectCreateOneWithoutPrismaResourcesInput CommentTarget: ResourceCreateOneWithoutCommentsInput Comments: ResourceCreateManyWithoutCommentTargetInput Votes: VoteCreateManyWithoutResourceInput Tags: ResourceTagCreateManyWithoutResourceInput } input ResourceCreateWithoutImageInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CreatedBy: UserCreateOneWithoutResourcesInput! Parent: ResourceCreateOneWithoutChildsInput Childs: ResourceCreateManyWithoutParentInput PrismaProject: ProjectCreateOneWithoutPrismaResourcesInput CommentTarget: ResourceCreateOneWithoutCommentsInput Comments: ResourceCreateManyWithoutCommentTargetInput Votes: VoteCreateManyWithoutResourceInput Tags: ResourceTagCreateManyWithoutResourceInput } input ResourceCreateWithoutParentInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CreatedBy: UserCreateOneWithoutResourcesInput! Childs: ResourceCreateManyWithoutParentInput Image: FileCreateOneWithoutImageResourceInput PrismaProject: ProjectCreateOneWithoutPrismaResourcesInput CommentTarget: ResourceCreateOneWithoutCommentsInput Comments: ResourceCreateManyWithoutCommentTargetInput Votes: VoteCreateManyWithoutResourceInput Tags: ResourceTagCreateManyWithoutResourceInput } input ResourceCreateWithoutPrismaProjectInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CreatedBy: UserCreateOneWithoutResourcesInput! Parent: ResourceCreateOneWithoutChildsInput Childs: ResourceCreateManyWithoutParentInput Image: FileCreateOneWithoutImageResourceInput CommentTarget: ResourceCreateOneWithoutCommentsInput Comments: ResourceCreateManyWithoutCommentTargetInput Votes: VoteCreateManyWithoutResourceInput Tags: ResourceTagCreateManyWithoutResourceInput } input ResourceCreateWithoutTagsInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CreatedBy: UserCreateOneWithoutResourcesInput! Parent: ResourceCreateOneWithoutChildsInput Childs: ResourceCreateManyWithoutParentInput Image: FileCreateOneWithoutImageResourceInput PrismaProject: ProjectCreateOneWithoutPrismaResourcesInput CommentTarget: ResourceCreateOneWithoutCommentsInput Comments: ResourceCreateManyWithoutCommentTargetInput Votes: VoteCreateManyWithoutResourceInput } input ResourceCreateWithoutVotesInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CreatedBy: UserCreateOneWithoutResourcesInput! Parent: ResourceCreateOneWithoutChildsInput Childs: ResourceCreateManyWithoutParentInput Image: FileCreateOneWithoutImageResourceInput PrismaProject: ProjectCreateOneWithoutPrismaResourcesInput CommentTarget: ResourceCreateOneWithoutCommentsInput Comments: ResourceCreateManyWithoutCommentTargetInput Tags: ResourceTagCreateManyWithoutResourceInput } """An edge in a connection.""" type ResourceEdge { """The item at the end of the edge.""" node: Resource! """A cursor for use in pagination.""" cursor: String! } enum ResourceOrderByInput { id_ASC id_DESC code_ASC code_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC type_ASC type_DESC name_ASC name_DESC longtitle_ASC longtitle_DESC content_ASC content_DESC contentText_ASC contentText_DESC published_ASC published_DESC deleted_ASC deleted_DESC hidemenu_ASC hidemenu_DESC searchable_ASC searchable_DESC uri_ASC uri_DESC isfolder_ASC isfolder_DESC rating_ASC rating_DESC positiveVotesCount_ASC positiveVotesCount_DESC negativeVotesCount_ASC negativeVotesCount_DESC neutralVotesCount_ASC neutralVotesCount_DESC } type ResourcePreviousValues { id: ID! code: ID createdAt: DateTime! updatedAt: DateTime! type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean! deleted: Boolean! hidemenu: Boolean! searchable: Boolean! uri: String isfolder: Boolean! rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int } type ResourceResponse { success: Boolean! message: String errors: [Error!]! data: Resource } type ResourceSubscriptionPayload { mutation: MutationType! node: Resource updatedFields: [String!] previousValues: ResourcePreviousValues } input ResourceSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [ResourceSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [ResourceSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ResourceSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: ResourceWhereInput } type ResourceTag implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! status: TagStatus! Resource(where: ResourceWhereInput): Resource! Tag(where: TagWhereInput): Tag! CreatedBy(where: UserWhereInput): User! } """A connection to a list of items.""" type ResourceTagConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [ResourceTagEdge]! aggregate: AggregateResourceTag! } input ResourceTagCreateInput { status: TagStatus Resource: ResourceCreateOneWithoutTagsInput! Tag: TagCreateOneWithoutResourcesInput! CreatedBy: UserCreateOneWithoutResourceTagsInput! } input ResourceTagCreateManyWithoutCreatedByInput { connect: [ResourceTagWhereUniqueInput!] } input ResourceTagCreateManyWithoutResourceInput { connect: [ResourceTagWhereUniqueInput!] } input ResourceTagCreateManyWithoutTagInput { connect: [ResourceTagWhereUniqueInput!] } input ResourceTagCreateWithoutCreatedByInput { status: TagStatus Resource: ResourceCreateOneWithoutTagsInput! Tag: TagCreateOneWithoutResourcesInput! } input ResourceTagCreateWithoutResourceInput { status: TagStatus Tag: TagCreateOneWithoutResourcesInput! CreatedBy: UserCreateOneWithoutResourceTagsInput! } input ResourceTagCreateWithoutTagInput { status: TagStatus Resource: ResourceCreateOneWithoutTagsInput! CreatedBy: UserCreateOneWithoutResourceTagsInput! } """An edge in a connection.""" type ResourceTagEdge { """The item at the end of the edge.""" node: ResourceTag! """A cursor for use in pagination.""" cursor: String! } enum ResourceTagOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC status_ASC status_DESC } type ResourceTagPreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! status: TagStatus! } type ResourceTagSubscriptionPayload { mutation: MutationType! node: ResourceTag updatedFields: [String!] previousValues: ResourceTagPreviousValues } input ResourceTagSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [ResourceTagSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [ResourceTagSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ResourceTagSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: ResourceTagWhereInput } input ResourceTagUpdateInput { status: TagStatus Resource: ResourceUpdateOneWithoutTagsInput Tag: TagUpdateOneWithoutResourcesInput CreatedBy: UserUpdateOneWithoutResourceTagsInput } input ResourceTagUpdateManyWithoutCreatedByInput { connect: [ResourceTagWhereUniqueInput!] disconnect: [ResourceTagWhereUniqueInput!] } input ResourceTagUpdateManyWithoutResourceInput { connect: [ResourceTagWhereUniqueInput!] disconnect: [ResourceTagWhereUniqueInput!] } input ResourceTagUpdateManyWithoutTagInput { connect: [ResourceTagWhereUniqueInput!] disconnect: [ResourceTagWhereUniqueInput!] } input ResourceTagUpdateWithoutCreatedByDataInput { status: TagStatus Resource: ResourceUpdateOneWithoutTagsInput Tag: TagUpdateOneWithoutResourcesInput } input ResourceTagUpdateWithoutResourceDataInput { status: TagStatus Tag: TagUpdateOneWithoutResourcesInput CreatedBy: UserUpdateOneWithoutResourceTagsInput } input ResourceTagUpdateWithoutTagDataInput { status: TagStatus Resource: ResourceUpdateOneWithoutTagsInput CreatedBy: UserUpdateOneWithoutResourceTagsInput } input ResourceTagUpdateWithWhereUniqueWithoutCreatedByInput { where: ResourceTagWhereUniqueInput! data: ResourceTagUpdateWithoutCreatedByDataInput! } input ResourceTagUpdateWithWhereUniqueWithoutResourceInput { where: ResourceTagWhereUniqueInput! data: ResourceTagUpdateWithoutResourceDataInput! } input ResourceTagUpdateWithWhereUniqueWithoutTagInput { where: ResourceTagWhereUniqueInput! data: ResourceTagUpdateWithoutTagDataInput! } input ResourceTagUpsertWithWhereUniqueWithoutCreatedByInput { where: ResourceTagWhereUniqueInput! } input ResourceTagUpsertWithWhereUniqueWithoutResourceInput { where: ResourceTagWhereUniqueInput! } input ResourceTagUpsertWithWhereUniqueWithoutTagInput { where: ResourceTagWhereUniqueInput! } input ResourceTagWhereInput { """Logical AND on all given filters.""" AND: [ResourceTagWhereInput!] """Logical OR on all given filters.""" OR: [ResourceTagWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ResourceTagWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime status: TagStatus """All values that are not equal to given value.""" status_not: TagStatus """All values that are contained in given list.""" status_in: [TagStatus!] """All values that are not contained in given list.""" status_not_in: [TagStatus!] Resource: ResourceWhereInput Tag: TagWhereInput CreatedBy: UserWhereInput } input ResourceTagWhereUniqueInput { id: ID } enum ResourceType { Resource Blog Topic Comment } input ResourceUpdateInput { type: ResourceType code: ID name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean Parent: ResourceUpdateOneWithoutChildsInput Childs: ResourceUpdateManyWithoutParentInput Image: FileUpdateOneWithoutImageResourceInput } input ResourceUpdateManyWithoutCommentTargetInput { connect: [ResourceWhereUniqueInput!] disconnect: [ResourceWhereUniqueInput!] } input ResourceUpdateManyWithoutCreatedByInput { connect: [ResourceWhereUniqueInput!] disconnect: [ResourceWhereUniqueInput!] } input ResourceUpdateManyWithoutParentInput { connect: [ResourceWhereUniqueInput!] disconnect: [ResourceWhereUniqueInput!] } input ResourceUpdateManyWithoutPrismaProjectInput { connect: [ResourceWhereUniqueInput!] disconnect: [ResourceWhereUniqueInput!] } input ResourceUpdateOneWithoutChildsInput { connect: ResourceWhereUniqueInput disconnect: Boolean } input ResourceUpdateOneWithoutCommentsInput { connect: ResourceWhereUniqueInput disconnect: Boolean } input ResourceUpdateOneWithoutImageInput { connect: ResourceWhereUniqueInput disconnect: Boolean } input ResourceUpdateOneWithoutTagsInput { connect: ResourceWhereUniqueInput } input ResourceUpdateOneWithoutVotesInput { connect: ResourceWhereUniqueInput } input ResourceUpdateWithoutChildsDataInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CreatedBy: UserUpdateOneWithoutResourcesInput Parent: ResourceUpdateOneWithoutChildsInput Image: FileUpdateOneWithoutImageResourceInput PrismaProject: ProjectUpdateOneWithoutPrismaResourcesInput CommentTarget: ResourceUpdateOneWithoutCommentsInput Comments: ResourceUpdateManyWithoutCommentTargetInput Votes: VoteUpdateManyWithoutResourceInput Tags: ResourceTagUpdateManyWithoutResourceInput } input ResourceUpdateWithoutCommentsDataInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CreatedBy: UserUpdateOneWithoutResourcesInput Parent: ResourceUpdateOneWithoutChildsInput Childs: ResourceUpdateManyWithoutParentInput Image: FileUpdateOneWithoutImageResourceInput PrismaProject: ProjectUpdateOneWithoutPrismaResourcesInput CommentTarget: ResourceUpdateOneWithoutCommentsInput Votes: VoteUpdateManyWithoutResourceInput Tags: ResourceTagUpdateManyWithoutResourceInput } input ResourceUpdateWithoutCommentTargetDataInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CreatedBy: UserUpdateOneWithoutResourcesInput Parent: ResourceUpdateOneWithoutChildsInput Childs: ResourceUpdateManyWithoutParentInput Image: FileUpdateOneWithoutImageResourceInput PrismaProject: ProjectUpdateOneWithoutPrismaResourcesInput Comments: ResourceUpdateManyWithoutCommentTargetInput Votes: VoteUpdateManyWithoutResourceInput Tags: ResourceTagUpdateManyWithoutResourceInput } input ResourceUpdateWithoutCreatedByDataInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int Parent: ResourceUpdateOneWithoutChildsInput Childs: ResourceUpdateManyWithoutParentInput Image: FileUpdateOneWithoutImageResourceInput PrismaProject: ProjectUpdateOneWithoutPrismaResourcesInput CommentTarget: ResourceUpdateOneWithoutCommentsInput Comments: ResourceUpdateManyWithoutCommentTargetInput Votes: VoteUpdateManyWithoutResourceInput Tags: ResourceTagUpdateManyWithoutResourceInput } input ResourceUpdateWithoutImageDataInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CreatedBy: UserUpdateOneWithoutResourcesInput Parent: ResourceUpdateOneWithoutChildsInput Childs: ResourceUpdateManyWithoutParentInput PrismaProject: ProjectUpdateOneWithoutPrismaResourcesInput CommentTarget: ResourceUpdateOneWithoutCommentsInput Comments: ResourceUpdateManyWithoutCommentTargetInput Votes: VoteUpdateManyWithoutResourceInput Tags: ResourceTagUpdateManyWithoutResourceInput } input ResourceUpdateWithoutParentDataInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CreatedBy: UserUpdateOneWithoutResourcesInput Childs: ResourceUpdateManyWithoutParentInput Image: FileUpdateOneWithoutImageResourceInput PrismaProject: ProjectUpdateOneWithoutPrismaResourcesInput CommentTarget: ResourceUpdateOneWithoutCommentsInput Comments: ResourceUpdateManyWithoutCommentTargetInput Votes: VoteUpdateManyWithoutResourceInput Tags: ResourceTagUpdateManyWithoutResourceInput } input ResourceUpdateWithoutPrismaProjectDataInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CreatedBy: UserUpdateOneWithoutResourcesInput Parent: ResourceUpdateOneWithoutChildsInput Childs: ResourceUpdateManyWithoutParentInput Image: FileUpdateOneWithoutImageResourceInput CommentTarget: ResourceUpdateOneWithoutCommentsInput Comments: ResourceUpdateManyWithoutCommentTargetInput Votes: VoteUpdateManyWithoutResourceInput Tags: ResourceTagUpdateManyWithoutResourceInput } input ResourceUpdateWithoutTagsDataInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CreatedBy: UserUpdateOneWithoutResourcesInput Parent: ResourceUpdateOneWithoutChildsInput Childs: ResourceUpdateManyWithoutParentInput Image: FileUpdateOneWithoutImageResourceInput PrismaProject: ProjectUpdateOneWithoutPrismaResourcesInput CommentTarget: ResourceUpdateOneWithoutCommentsInput Comments: ResourceUpdateManyWithoutCommentTargetInput Votes: VoteUpdateManyWithoutResourceInput } input ResourceUpdateWithoutVotesDataInput { code: ID type: ResourceType name: String longtitle: String content: Json contentText: String published: Boolean deleted: Boolean hidemenu: Boolean searchable: Boolean uri: String isfolder: Boolean rating: Float positiveVotesCount: Int negativeVotesCount: Int neutralVotesCount: Int CreatedBy: UserUpdateOneWithoutResourcesInput Parent: ResourceUpdateOneWithoutChildsInput Childs: ResourceUpdateManyWithoutParentInput Image: FileUpdateOneWithoutImageResourceInput PrismaProject: ProjectUpdateOneWithoutPrismaResourcesInput CommentTarget: ResourceUpdateOneWithoutCommentsInput Comments: ResourceUpdateManyWithoutCommentTargetInput Tags: ResourceTagUpdateManyWithoutResourceInput } input ResourceUpdateWithWhereUniqueWithoutCommentTargetInput { where: ResourceWhereUniqueInput! data: ResourceUpdateWithoutCommentTargetDataInput! } input ResourceUpdateWithWhereUniqueWithoutCreatedByInput { where: ResourceWhereUniqueInput! data: ResourceUpdateWithoutCreatedByDataInput! } input ResourceUpdateWithWhereUniqueWithoutParentInput { where: ResourceWhereUniqueInput! data: ResourceUpdateWithoutParentDataInput! } input ResourceUpdateWithWhereUniqueWithoutPrismaProjectInput { where: ResourceWhereUniqueInput! data: ResourceUpdateWithoutPrismaProjectDataInput! } input ResourceUpsertWithWhereUniqueWithoutCommentTargetInput { where: ResourceWhereUniqueInput! } input ResourceUpsertWithWhereUniqueWithoutCreatedByInput { where: ResourceWhereUniqueInput! } input ResourceUpsertWithWhereUniqueWithoutParentInput { where: ResourceWhereUniqueInput! } input ResourceUpsertWithWhereUniqueWithoutPrismaProjectInput { where: ResourceWhereUniqueInput! } input ResourceWhereInput { """Logical AND on all given filters.""" AND: [ResourceWhereInput!] """Logical OR on all given filters.""" OR: [ResourceWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ResourceWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID code: ID """All values that are not equal to given value.""" code_not: ID """All values that are contained in given list.""" code_in: [ID!] """All values that are not contained in given list.""" code_not_in: [ID!] """All values less than the given value.""" code_lt: ID """All values less than or equal the given value.""" code_lte: ID """All values greater than the given value.""" code_gt: ID """All values greater than or equal the given value.""" code_gte: ID """All values containing the given string.""" code_contains: ID """All values not containing the given string.""" code_not_contains: ID """All values starting with the given string.""" code_starts_with: ID """All values not starting with the given string.""" code_not_starts_with: ID """All values ending with the given string.""" code_ends_with: ID """All values not ending with the given string.""" code_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime type: ResourceType """All values that are not equal to given value.""" type_not: ResourceType """All values that are contained in given list.""" type_in: [ResourceType!] """All values that are not contained in given list.""" type_not_in: [ResourceType!] name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String longtitle: String """All values that are not equal to given value.""" longtitle_not: String """All values that are contained in given list.""" longtitle_in: [String!] """All values that are not contained in given list.""" longtitle_not_in: [String!] """All values less than the given value.""" longtitle_lt: String """All values less than or equal the given value.""" longtitle_lte: String """All values greater than the given value.""" longtitle_gt: String """All values greater than or equal the given value.""" longtitle_gte: String """All values containing the given string.""" longtitle_contains: String """All values not containing the given string.""" longtitle_not_contains: String """All values starting with the given string.""" longtitle_starts_with: String """All values not starting with the given string.""" longtitle_not_starts_with: String """All values ending with the given string.""" longtitle_ends_with: String """All values not ending with the given string.""" longtitle_not_ends_with: String contentText: String """All values that are not equal to given value.""" contentText_not: String """All values that are contained in given list.""" contentText_in: [String!] """All values that are not contained in given list.""" contentText_not_in: [String!] """All values less than the given value.""" contentText_lt: String """All values less than or equal the given value.""" contentText_lte: String """All values greater than the given value.""" contentText_gt: String """All values greater than or equal the given value.""" contentText_gte: String """All values containing the given string.""" contentText_contains: String """All values not containing the given string.""" contentText_not_contains: String """All values starting with the given string.""" contentText_starts_with: String """All values not starting with the given string.""" contentText_not_starts_with: String """All values ending with the given string.""" contentText_ends_with: String """All values not ending with the given string.""" contentText_not_ends_with: String published: Boolean """All values that are not equal to given value.""" published_not: Boolean deleted: Boolean """All values that are not equal to given value.""" deleted_not: Boolean hidemenu: Boolean """All values that are not equal to given value.""" hidemenu_not: Boolean searchable: Boolean """All values that are not equal to given value.""" searchable_not: Boolean uri: String """All values that are not equal to given value.""" uri_not: String """All values that are contained in given list.""" uri_in: [String!] """All values that are not contained in given list.""" uri_not_in: [String!] """All values less than the given value.""" uri_lt: String """All values less than or equal the given value.""" uri_lte: String """All values greater than the given value.""" uri_gt: String """All values greater than or equal the given value.""" uri_gte: String """All values containing the given string.""" uri_contains: String """All values not containing the given string.""" uri_not_contains: String """All values starting with the given string.""" uri_starts_with: String """All values not starting with the given string.""" uri_not_starts_with: String """All values ending with the given string.""" uri_ends_with: String """All values not ending with the given string.""" uri_not_ends_with: String isfolder: Boolean """All values that are not equal to given value.""" isfolder_not: Boolean rating: Float """All values that are not equal to given value.""" rating_not: Float """All values that are contained in given list.""" rating_in: [Float!] """All values that are not contained in given list.""" rating_not_in: [Float!] """All values less than the given value.""" rating_lt: Float """All values less than or equal the given value.""" rating_lte: Float """All values greater than the given value.""" rating_gt: Float """All values greater than or equal the given value.""" rating_gte: Float positiveVotesCount: Int """All values that are not equal to given value.""" positiveVotesCount_not: Int """All values that are contained in given list.""" positiveVotesCount_in: [Int!] """All values that are not contained in given list.""" positiveVotesCount_not_in: [Int!] """All values less than the given value.""" positiveVotesCount_lt: Int """All values less than or equal the given value.""" positiveVotesCount_lte: Int """All values greater than the given value.""" positiveVotesCount_gt: Int """All values greater than or equal the given value.""" positiveVotesCount_gte: Int negativeVotesCount: Int """All values that are not equal to given value.""" negativeVotesCount_not: Int """All values that are contained in given list.""" negativeVotesCount_in: [Int!] """All values that are not contained in given list.""" negativeVotesCount_not_in: [Int!] """All values less than the given value.""" negativeVotesCount_lt: Int """All values less than or equal the given value.""" negativeVotesCount_lte: Int """All values greater than the given value.""" negativeVotesCount_gt: Int """All values greater than or equal the given value.""" negativeVotesCount_gte: Int neutralVotesCount: Int """All values that are not equal to given value.""" neutralVotesCount_not: Int """All values that are contained in given list.""" neutralVotesCount_in: [Int!] """All values that are not contained in given list.""" neutralVotesCount_not_in: [Int!] """All values less than the given value.""" neutralVotesCount_lt: Int """All values less than or equal the given value.""" neutralVotesCount_lte: Int """All values greater than the given value.""" neutralVotesCount_gt: Int """All values greater than or equal the given value.""" neutralVotesCount_gte: Int CreatedBy: UserWhereInput Parent: ResourceWhereInput Childs_every: ResourceWhereInput Childs_some: ResourceWhereInput Childs_none: ResourceWhereInput Image: FileWhereInput PrismaProject: ProjectWhereInput CommentTarget: ResourceWhereInput Comments_every: ResourceWhereInput Comments_some: ResourceWhereInput Comments_none: ResourceWhereInput Votes_every: VoteWhereInput Votes_some: VoteWhereInput Votes_none: VoteWhereInput Tags_every: ResourceTagWhereInput Tags_some: ResourceTagWhereInput Tags_none: ResourceTagWhereInput } input ResourceWhereUniqueInput { id: ID code: ID uri: String } type Route implements Node { id: ID! name: String path: String! exact: Boolean! component: String! Parent(where: RouteWhereInput): Route Childs(where: RouteWhereInput, orderBy: RouteOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Route!] CreatedBy(where: UserWhereInput): User } """A connection to a list of items.""" type RouteConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [RouteEdge]! aggregate: AggregateRoute! } input RouteCreateInput { name: String path: String! exact: Boolean component: String! Parent: RouteCreateOneWithoutChildsInput Childs: RouteCreateManyWithoutParentInput CreatedBy: UserCreateOneInput } input RouteCreateManyWithoutParentInput { connect: [RouteWhereUniqueInput!] } input RouteCreateOneWithoutChildsInput { connect: RouteWhereUniqueInput } input RouteCreateWithoutChildsInput { name: String path: String! exact: Boolean component: String! Parent: RouteCreateOneWithoutChildsInput CreatedBy: UserCreateOneInput } input RouteCreateWithoutParentInput { name: String path: String! exact: Boolean component: String! Childs: RouteCreateManyWithoutParentInput CreatedBy: UserCreateOneInput } """An edge in a connection.""" type RouteEdge { """The item at the end of the edge.""" node: Route! """A cursor for use in pagination.""" cursor: String! } enum RouteOrderByInput { id_ASC id_DESC name_ASC name_DESC path_ASC path_DESC exact_ASC exact_DESC component_ASC component_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } type RoutePreviousValues { id: ID! name: String path: String! exact: Boolean! component: String! } type RouteResponse { success: Boolean! message: String errors: [Error!]! data: Route } type RouteSubscriptionPayload { mutation: MutationType! node: Route updatedFields: [String!] previousValues: RoutePreviousValues } input RouteSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [RouteSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [RouteSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [RouteSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: RouteWhereInput } input RouteUpdateInput { name: String path: String exact: Boolean component: String Parent: RouteUpdateOneWithoutChildsInput Childs: RouteUpdateManyWithoutParentInput CreatedBy: UserUpdateOneInput } input RouteUpdateManyWithoutParentInput { connect: [RouteWhereUniqueInput!] disconnect: [RouteWhereUniqueInput!] } input RouteUpdateOneWithoutChildsInput { connect: RouteWhereUniqueInput disconnect: Boolean } input RouteUpdateWithoutChildsDataInput { name: String path: String exact: Boolean component: String Parent: RouteUpdateOneWithoutChildsInput CreatedBy: UserUpdateOneInput } input RouteUpdateWithoutParentDataInput { name: String path: String exact: Boolean component: String Childs: RouteUpdateManyWithoutParentInput CreatedBy: UserUpdateOneInput } input RouteUpdateWithWhereUniqueWithoutParentInput { where: RouteWhereUniqueInput! data: RouteUpdateWithoutParentDataInput! } input RouteUpsertWithWhereUniqueWithoutParentInput { where: RouteWhereUniqueInput! } input RouteWhereInput { """Logical AND on all given filters.""" AND: [RouteWhereInput!] """Logical OR on all given filters.""" OR: [RouteWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [RouteWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String path: String """All values that are not equal to given value.""" path_not: String """All values that are contained in given list.""" path_in: [String!] """All values that are not contained in given list.""" path_not_in: [String!] """All values less than the given value.""" path_lt: String """All values less than or equal the given value.""" path_lte: String """All values greater than the given value.""" path_gt: String """All values greater than or equal the given value.""" path_gte: String """All values containing the given string.""" path_contains: String """All values not containing the given string.""" path_not_contains: String """All values starting with the given string.""" path_starts_with: String """All values not starting with the given string.""" path_not_starts_with: String """All values ending with the given string.""" path_ends_with: String """All values not ending with the given string.""" path_not_ends_with: String exact: Boolean """All values that are not equal to given value.""" exact_not: Boolean component: String """All values that are not equal to given value.""" component_not: String """All values that are contained in given list.""" component_in: [String!] """All values that are not contained in given list.""" component_not_in: [String!] """All values less than the given value.""" component_lt: String """All values less than or equal the given value.""" component_lte: String """All values greater than the given value.""" component_gt: String """All values greater than or equal the given value.""" component_gte: String """All values containing the given string.""" component_contains: String """All values not containing the given string.""" component_not_contains: String """All values starting with the given string.""" component_starts_with: String """All values not starting with the given string.""" component_not_starts_with: String """All values ending with the given string.""" component_ends_with: String """All values not ending with the given string.""" component_not_ends_with: String Parent: RouteWhereInput Childs_every: RouteWhereInput Childs_some: RouteWhereInput Childs_none: RouteWhereInput CreatedBy: UserWhereInput } input RouteWhereUniqueInput { id: ID path: String } type Service implements Node { id: ID! code: ID! name: String! short_name: String description: String price: Float priceCooficient: Float rejectCost: Float Tarifs(where: TarifWhereInput, orderBy: TarifOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Tarif!] ServiceOrders(where: ServiceOrderWhereInput, orderBy: ServiceOrderOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ServiceOrder!] } type ServiceCategory implements Node { id: ID! name: String! description: String code: ID CreatedBy(where: UserWhereInput): User! Services(where: ServiceWhereInput, orderBy: ServiceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Service!] Parent(where: ServiceCategoryWhereInput): ServiceCategory Childs(where: ServiceCategoryWhereInput, orderBy: ServiceCategoryOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ServiceCategory!] } """A connection to a list of items.""" type ServiceCategoryConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [ServiceCategoryEdge]! aggregate: AggregateServiceCategory! } input ServiceCategoryCreateInput { name: String! description: String code: ID CreatedBy: UserCreateOneInput! Services: ServiceCreateManyInput Parent: ServiceCategoryCreateOneWithoutChildsInput Childs: ServiceCategoryCreateManyWithoutParentInput } input ServiceCategoryCreateManyWithoutParentInput { connect: [ServiceCategoryWhereUniqueInput!] } input ServiceCategoryCreateOneWithoutChildsInput { connect: ServiceCategoryWhereUniqueInput } input ServiceCategoryCreateOneWithoutServicesInput { connect: ServiceCategoryWhereUniqueInput } input ServiceCategoryCreateWithoutChildsInput { name: String! description: String code: ID CreatedBy: UserCreateOneInput! Services: ServiceCreateManyInput Parent: ServiceCategoryCreateOneWithoutChildsInput } input ServiceCategoryCreateWithoutParentInput { name: String! description: String code: ID CreatedBy: UserCreateOneInput! Services: ServiceCreateManyInput Childs: ServiceCategoryCreateManyWithoutParentInput } """An edge in a connection.""" type ServiceCategoryEdge { """The item at the end of the edge.""" node: ServiceCategory! """A cursor for use in pagination.""" cursor: String! } enum ServiceCategoryOrderByInput { id_ASC id_DESC name_ASC name_DESC description_ASC description_DESC code_ASC code_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } type ServiceCategoryPreviousValues { id: ID! name: String! description: String code: ID } type ServiceCategoryResponse { success: Boolean! message: String errors: [Error!]! data: ServiceCategory } type ServiceCategorySubscriptionPayload { mutation: MutationType! node: ServiceCategory updatedFields: [String!] previousValues: ServiceCategoryPreviousValues } input ServiceCategorySubscriptionWhereInput { """Logical AND on all given filters.""" AND: [ServiceCategorySubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [ServiceCategorySubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ServiceCategorySubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: ServiceCategoryWhereInput } input ServiceCategoryUpdateInput { name: String description: String code: ID CreatedBy: UserUpdateOneInput Services: ServiceUpdateManyInput Parent: ServiceCategoryUpdateOneWithoutChildsInput Childs: ServiceCategoryUpdateManyWithoutParentInput } input ServiceCategoryUpdateManyWithoutParentInput { connect: [ServiceCategoryWhereUniqueInput!] disconnect: [ServiceCategoryWhereUniqueInput!] } input ServiceCategoryUpdateOneWithoutChildsInput { connect: ServiceCategoryWhereUniqueInput disconnect: Boolean } input ServiceCategoryUpdateWithoutChildsDataInput { name: String description: String code: ID CreatedBy: UserUpdateOneInput Services: ServiceUpdateManyInput Parent: ServiceCategoryUpdateOneWithoutChildsInput } input ServiceCategoryUpdateWithoutParentDataInput { name: String description: String code: ID CreatedBy: UserUpdateOneInput Services: ServiceUpdateManyInput Childs: ServiceCategoryUpdateManyWithoutParentInput } input ServiceCategoryUpdateWithWhereUniqueWithoutParentInput { where: ServiceCategoryWhereUniqueInput! data: ServiceCategoryUpdateWithoutParentDataInput! } input ServiceCategoryUpsertWithWhereUniqueWithoutParentInput { where: ServiceCategoryWhereUniqueInput! } input ServiceCategoryWhereInput { """Logical AND on all given filters.""" AND: [ServiceCategoryWhereInput!] """Logical OR on all given filters.""" OR: [ServiceCategoryWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ServiceCategoryWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String description: String """All values that are not equal to given value.""" description_not: String """All values that are contained in given list.""" description_in: [String!] """All values that are not contained in given list.""" description_not_in: [String!] """All values less than the given value.""" description_lt: String """All values less than or equal the given value.""" description_lte: String """All values greater than the given value.""" description_gt: String """All values greater than or equal the given value.""" description_gte: String """All values containing the given string.""" description_contains: String """All values not containing the given string.""" description_not_contains: String """All values starting with the given string.""" description_starts_with: String """All values not starting with the given string.""" description_not_starts_with: String """All values ending with the given string.""" description_ends_with: String """All values not ending with the given string.""" description_not_ends_with: String code: ID """All values that are not equal to given value.""" code_not: ID """All values that are contained in given list.""" code_in: [ID!] """All values that are not contained in given list.""" code_not_in: [ID!] """All values less than the given value.""" code_lt: ID """All values less than or equal the given value.""" code_lte: ID """All values greater than the given value.""" code_gt: ID """All values greater than or equal the given value.""" code_gte: ID """All values containing the given string.""" code_contains: ID """All values not containing the given string.""" code_not_contains: ID """All values starting with the given string.""" code_starts_with: ID """All values not starting with the given string.""" code_not_starts_with: ID """All values ending with the given string.""" code_ends_with: ID """All values not ending with the given string.""" code_not_ends_with: ID CreatedBy: UserWhereInput Services_every: ServiceWhereInput Services_some: ServiceWhereInput Services_none: ServiceWhereInput Parent: ServiceCategoryWhereInput Childs_every: ServiceCategoryWhereInput Childs_some: ServiceCategoryWhereInput Childs_none: ServiceCategoryWhereInput } input ServiceCategoryWhereUniqueInput { id: ID code: ID } """A connection to a list of items.""" type ServiceConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [ServiceEdge]! aggregate: AggregateService! } input ServiceCreateInput { code: ID name: String short_name: String description: String price: Float priceCooficient: Float rejectCost: Float Tarifs: TarifCreateManyWithoutServiceInput ServiceOrders: ServiceOrderCreateManyWithoutServiceInput rank: Int Parent: ServiceCreateOneWithoutChildsInput Childs: ServiceCreateManyWithoutParentInput Category: ServiceCategoryCreateOneWithoutServicesInput } input ServiceCreateManyInput { connect: [ServiceWhereUniqueInput!] } input ServiceCreateManyWithoutParentInput { connect: [ServiceWhereUniqueInput!] } input ServiceCreateManyWithoutProjectsInput { connect: [ServiceWhereUniqueInput!] } input ServiceCreateOneWithoutChildsInput { connect: ServiceWhereUniqueInput } input ServiceCreateOneWithoutServiceOrdersInput { connect: ServiceWhereUniqueInput } input ServiceCreateOneWithoutTarifsInput { connect: ServiceWhereUniqueInput } input ServiceCreateWithoutServiceOrdersInput { code: ID! name: String! short_name: String description: String price: Float priceCooficient: Float rejectCost: Float Tarifs: TarifCreateManyWithoutServiceInput } input ServiceCreateWithoutTarifsInput { code: ID! name: String! short_name: String description: String price: Float priceCooficient: Float rejectCost: Float ServiceOrders: ServiceOrderCreateManyWithoutServiceInput } """An edge in a connection.""" type ServiceEdge { """The item at the end of the edge.""" node: Service! """A cursor for use in pagination.""" cursor: String! } type ServiceOrder implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! confirmDate: DateTime rejectDate: DateTime readyDate: DateTime User(where: UserWhereInput): User! OrderItem(where: OrderItemWhereInput): OrderItem! Service(where: ServiceWhereInput): Service! Tarif(where: TarifWhereInput): Tarif amount: Float! dirty: Boolean! exported: Boolean! status: ServiceOrderStatus! } enum ServiceOrderByInput { id_ASC id_DESC code_ASC code_DESC name_ASC name_DESC short_name_ASC short_name_DESC description_ASC description_DESC price_ASC price_DESC priceCooficient_ASC priceCooficient_DESC rejectCost_ASC rejectCost_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } """A connection to a list of items.""" type ServiceOrderConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [ServiceOrderEdge]! aggregate: AggregateServiceOrder! } input ServiceOrderCreateInput { confirmDate: DateTime rejectDate: DateTime readyDate: DateTime amount: Float! dirty: Boolean exported: Boolean status: ServiceOrderStatus User: UserCreateOneWithoutServiceOrdersInput! OrderItem: OrderItemCreateOneWithoutServiceOrdersInput! Service: ServiceCreateOneWithoutServiceOrdersInput! Tarif: TarifCreateOneInput } input ServiceOrderCreateManyWithoutOrderItemInput { connect: [ServiceOrderWhereUniqueInput!] } input ServiceOrderCreateManyWithoutServiceInput { connect: [ServiceOrderWhereUniqueInput!] } input ServiceOrderCreateManyWithoutUserInput { connect: [ServiceOrderWhereUniqueInput!] } input ServiceOrderCreateWithoutOrderItemInput { confirmDate: DateTime rejectDate: DateTime readyDate: DateTime amount: Float! dirty: Boolean exported: Boolean status: ServiceOrderStatus User: UserCreateOneWithoutServiceOrdersInput! Service: ServiceCreateOneWithoutServiceOrdersInput! Tarif: TarifCreateOneInput } input ServiceOrderCreateWithoutServiceInput { confirmDate: DateTime rejectDate: DateTime readyDate: DateTime amount: Float! dirty: Boolean exported: Boolean status: ServiceOrderStatus User: UserCreateOneWithoutServiceOrdersInput! OrderItem: OrderItemCreateOneWithoutServiceOrdersInput! Tarif: TarifCreateOneInput } input ServiceOrderCreateWithoutUserInput { confirmDate: DateTime rejectDate: DateTime readyDate: DateTime amount: Float! dirty: Boolean exported: Boolean status: ServiceOrderStatus OrderItem: OrderItemCreateOneWithoutServiceOrdersInput! Service: ServiceCreateOneWithoutServiceOrdersInput! Tarif: TarifCreateOneInput } """An edge in a connection.""" type ServiceOrderEdge { """The item at the end of the edge.""" node: ServiceOrder! """A cursor for use in pagination.""" cursor: String! } enum ServiceOrderOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC confirmDate_ASC confirmDate_DESC rejectDate_ASC rejectDate_DESC readyDate_ASC readyDate_DESC amount_ASC amount_DESC dirty_ASC dirty_DESC exported_ASC exported_DESC status_ASC status_DESC } type ServiceOrderPreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! confirmDate: DateTime rejectDate: DateTime readyDate: DateTime amount: Float! dirty: Boolean! exported: Boolean! status: ServiceOrderStatus! } type ServiceOrderResponse { success: Boolean! message: String errors: [Error!]! data: ServiceOrder } enum ServiceOrderStatus { Created Accepted Completed } type ServiceOrderSubscriptionPayload { mutation: MutationType! node: ServiceOrder updatedFields: [String!] previousValues: ServiceOrderPreviousValues } input ServiceOrderSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [ServiceOrderSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [ServiceOrderSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ServiceOrderSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: ServiceOrderWhereInput } input ServiceOrderUpdateInput { confirm: Boolean reject: Boolean confirmDate: DateTime rejectDate: DateTime readyDate: DateTime amount: Float dirty: Boolean exported: Boolean status: ServiceOrderStatus User: UserUpdateOneWithoutServiceOrdersInput OrderItem: OrderItemUpdateOneWithoutServiceOrdersInput Service: ServiceUpdateOneWithoutServiceOrdersInput Tarif: TarifUpdateOneInput } input ServiceOrderUpdateManyWithoutOrderItemInput { connect: [ServiceOrderWhereUniqueInput!] disconnect: [ServiceOrderWhereUniqueInput!] } input ServiceOrderUpdateManyWithoutServiceInput { connect: [ServiceOrderWhereUniqueInput!] disconnect: [ServiceOrderWhereUniqueInput!] } input ServiceOrderUpdateManyWithoutUserInput { connect: [ServiceOrderWhereUniqueInput!] disconnect: [ServiceOrderWhereUniqueInput!] } input ServiceOrderUpdateWithoutOrderItemDataInput { confirmDate: DateTime rejectDate: DateTime readyDate: DateTime amount: Float dirty: Boolean exported: Boolean status: ServiceOrderStatus User: UserUpdateOneWithoutServiceOrdersInput Service: ServiceUpdateOneWithoutServiceOrdersInput Tarif: TarifUpdateOneInput } input ServiceOrderUpdateWithoutServiceDataInput { confirmDate: DateTime rejectDate: DateTime readyDate: DateTime amount: Float dirty: Boolean exported: Boolean status: ServiceOrderStatus User: UserUpdateOneWithoutServiceOrdersInput OrderItem: OrderItemUpdateOneWithoutServiceOrdersInput Tarif: TarifUpdateOneInput } input ServiceOrderUpdateWithoutUserDataInput { confirmDate: DateTime rejectDate: DateTime readyDate: DateTime amount: Float dirty: Boolean exported: Boolean status: ServiceOrderStatus OrderItem: OrderItemUpdateOneWithoutServiceOrdersInput Service: ServiceUpdateOneWithoutServiceOrdersInput Tarif: TarifUpdateOneInput } input ServiceOrderUpdateWithWhereUniqueWithoutOrderItemInput { where: ServiceOrderWhereUniqueInput! data: ServiceOrderUpdateWithoutOrderItemDataInput! } input ServiceOrderUpdateWithWhereUniqueWithoutServiceInput { where: ServiceOrderWhereUniqueInput! data: ServiceOrderUpdateWithoutServiceDataInput! } input ServiceOrderUpdateWithWhereUniqueWithoutUserInput { where: ServiceOrderWhereUniqueInput! data: ServiceOrderUpdateWithoutUserDataInput! } input ServiceOrderUpsertWithWhereUniqueWithoutOrderItemInput { where: ServiceOrderWhereUniqueInput! } input ServiceOrderUpsertWithWhereUniqueWithoutServiceInput { where: ServiceOrderWhereUniqueInput! } input ServiceOrderUpsertWithWhereUniqueWithoutUserInput { where: ServiceOrderWhereUniqueInput! } input ServiceOrderWhereInput { activeOnly: Boolean """Logical AND on all given filters.""" AND: [ServiceOrderWhereInput!] """Logical OR on all given filters.""" OR: [ServiceOrderWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ServiceOrderWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime confirmDate: DateTime """All values that are not equal to given value.""" confirmDate_not: DateTime """All values that are contained in given list.""" confirmDate_in: [DateTime!] """All values that are not contained in given list.""" confirmDate_not_in: [DateTime!] """All values less than the given value.""" confirmDate_lt: DateTime """All values less than or equal the given value.""" confirmDate_lte: DateTime """All values greater than the given value.""" confirmDate_gt: DateTime """All values greater than or equal the given value.""" confirmDate_gte: DateTime rejectDate: DateTime """All values that are not equal to given value.""" rejectDate_not: DateTime """All values that are contained in given list.""" rejectDate_in: [DateTime!] """All values that are not contained in given list.""" rejectDate_not_in: [DateTime!] """All values less than the given value.""" rejectDate_lt: DateTime """All values less than or equal the given value.""" rejectDate_lte: DateTime """All values greater than the given value.""" rejectDate_gt: DateTime """All values greater than or equal the given value.""" rejectDate_gte: DateTime readyDate: DateTime """All values that are not equal to given value.""" readyDate_not: DateTime """All values that are contained in given list.""" readyDate_in: [DateTime!] """All values that are not contained in given list.""" readyDate_not_in: [DateTime!] """All values less than the given value.""" readyDate_lt: DateTime """All values less than or equal the given value.""" readyDate_lte: DateTime """All values greater than the given value.""" readyDate_gt: DateTime """All values greater than or equal the given value.""" readyDate_gte: DateTime amount: Float """All values that are not equal to given value.""" amount_not: Float """All values that are contained in given list.""" amount_in: [Float!] """All values that are not contained in given list.""" amount_not_in: [Float!] """All values less than the given value.""" amount_lt: Float """All values less than or equal the given value.""" amount_lte: Float """All values greater than the given value.""" amount_gt: Float """All values greater than or equal the given value.""" amount_gte: Float dirty: Boolean """All values that are not equal to given value.""" dirty_not: Boolean exported: Boolean """All values that are not equal to given value.""" exported_not: Boolean status: ServiceOrderStatus """All values that are not equal to given value.""" status_not: ServiceOrderStatus """All values that are contained in given list.""" status_in: [ServiceOrderStatus!] """All values that are not contained in given list.""" status_not_in: [ServiceOrderStatus!] User: UserWhereInput OrderItem: OrderItemWhereInput Service: ServiceWhereInput Tarif: TarifWhereInput } input ServiceOrderWhereUniqueInput { id: ID } type ServicePreviousValues { id: ID! code: ID! name: String! short_name: String description: String price: Float priceCooficient: Float rejectCost: Float } type ServiceResponse { success: Boolean! message: String errors: [Error!]! data: Service } type ServiceSubscriptionPayload { mutation: MutationType! node: Service updatedFields: [String!] previousValues: ServicePreviousValues } input ServiceSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [ServiceSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [ServiceSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ServiceSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: ServiceWhereInput } input ServiceUpdateDataInput { code: ID name: String short_name: String description: String price: Float priceCooficient: Float rejectCost: Float Tarifs: TarifUpdateManyWithoutServiceInput ServiceOrders: ServiceOrderUpdateManyWithoutServiceInput } input ServiceUpdateInput { code: ID name: String short_name: String description: String price: Float priceCooficient: Float rejectCost: Float Tarifs: TarifUpdateManyWithoutServiceInput ServiceOrders: ServiceOrderUpdateManyWithoutServiceInput } input ServiceUpdateManyInput { connect: [ServiceWhereUniqueInput!] disconnect: [ServiceWhereUniqueInput!] } input ServiceUpdateManyWithoutProjectsInput { connect: [ServiceWhereUniqueInput!] disconnect: [ServiceWhereUniqueInput!] } input ServiceUpdateOneWithoutServiceOrdersInput { connect: ServiceWhereUniqueInput } input ServiceUpdateOneWithoutTarifsInput { connect: ServiceWhereUniqueInput } input ServiceUpdateWithoutServiceOrdersDataInput { code: ID name: String short_name: String description: String price: Float priceCooficient: Float rejectCost: Float Tarifs: TarifUpdateManyWithoutServiceInput } input ServiceUpdateWithoutTarifsDataInput { code: ID name: String short_name: String description: String price: Float priceCooficient: Float rejectCost: Float ServiceOrders: ServiceOrderUpdateManyWithoutServiceInput } input ServiceUpdateWithWhereUniqueNestedInput { where: ServiceWhereUniqueInput! data: ServiceUpdateDataInput! } input ServiceUpsertWithWhereUniqueNestedInput { where: ServiceWhereUniqueInput! } input ServiceWhereInput { """Logical AND on all given filters.""" AND: [ServiceWhereInput!] """Logical OR on all given filters.""" OR: [ServiceWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [ServiceWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID code: ID """All values that are not equal to given value.""" code_not: ID """All values that are contained in given list.""" code_in: [ID!] """All values that are not contained in given list.""" code_not_in: [ID!] """All values less than the given value.""" code_lt: ID """All values less than or equal the given value.""" code_lte: ID """All values greater than the given value.""" code_gt: ID """All values greater than or equal the given value.""" code_gte: ID """All values containing the given string.""" code_contains: ID """All values not containing the given string.""" code_not_contains: ID """All values starting with the given string.""" code_starts_with: ID """All values not starting with the given string.""" code_not_starts_with: ID """All values ending with the given string.""" code_ends_with: ID """All values not ending with the given string.""" code_not_ends_with: ID name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String short_name: String """All values that are not equal to given value.""" short_name_not: String """All values that are contained in given list.""" short_name_in: [String!] """All values that are not contained in given list.""" short_name_not_in: [String!] """All values less than the given value.""" short_name_lt: String """All values less than or equal the given value.""" short_name_lte: String """All values greater than the given value.""" short_name_gt: String """All values greater than or equal the given value.""" short_name_gte: String """All values containing the given string.""" short_name_contains: String """All values not containing the given string.""" short_name_not_contains: String """All values starting with the given string.""" short_name_starts_with: String """All values not starting with the given string.""" short_name_not_starts_with: String """All values ending with the given string.""" short_name_ends_with: String """All values not ending with the given string.""" short_name_not_ends_with: String description: String """All values that are not equal to given value.""" description_not: String """All values that are contained in given list.""" description_in: [String!] """All values that are not contained in given list.""" description_not_in: [String!] """All values less than the given value.""" description_lt: String """All values less than or equal the given value.""" description_lte: String """All values greater than the given value.""" description_gt: String """All values greater than or equal the given value.""" description_gte: String """All values containing the given string.""" description_contains: String """All values not containing the given string.""" description_not_contains: String """All values starting with the given string.""" description_starts_with: String """All values not starting with the given string.""" description_not_starts_with: String """All values ending with the given string.""" description_ends_with: String """All values not ending with the given string.""" description_not_ends_with: String price: Float """All values that are not equal to given value.""" price_not: Float """All values that are contained in given list.""" price_in: [Float!] """All values that are not contained in given list.""" price_not_in: [Float!] """All values less than the given value.""" price_lt: Float """All values less than or equal the given value.""" price_lte: Float """All values greater than the given value.""" price_gt: Float """All values greater than or equal the given value.""" price_gte: Float priceCooficient: Float """All values that are not equal to given value.""" priceCooficient_not: Float """All values that are contained in given list.""" priceCooficient_in: [Float!] """All values that are not contained in given list.""" priceCooficient_not_in: [Float!] """All values less than the given value.""" priceCooficient_lt: Float """All values less than or equal the given value.""" priceCooficient_lte: Float """All values greater than the given value.""" priceCooficient_gt: Float """All values greater than or equal the given value.""" priceCooficient_gte: Float rejectCost: Float """All values that are not equal to given value.""" rejectCost_not: Float """All values that are contained in given list.""" rejectCost_in: [Float!] """All values that are not contained in given list.""" rejectCost_not_in: [Float!] """All values less than the given value.""" rejectCost_lt: Float """All values less than or equal the given value.""" rejectCost_lte: Float """All values greater than the given value.""" rejectCost_gt: Float """All values greater than or equal the given value.""" rejectCost_gte: Float Tarifs_every: TarifWhereInput Tarifs_some: TarifWhereInput Tarifs_none: TarifWhereInput ServiceOrders_every: ServiceOrderWhereInput ServiceOrders_some: ServiceOrderWhereInput ServiceOrders_none: ServiceOrderWhereInput } input ServiceWhereUniqueInput { id: ID code: ID name: String } input SigninDataInput { password: String! } input SingleUploadInput { file: Upload name: String directory: String } type SmsMessage implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! from: String! text: String! recipients: [String!]! Provider(where: SmsProviderWhereInput): SmsProvider! deletOnSend: Boolean CreatedBy(where: UserWhereInput): User Status(where: LetsadsSmsMessageStatusWhereInput): LetsadsSmsMessageStatus } """A connection to a list of items.""" type SmsMessageConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [SmsMessageEdge]! aggregate: AggregateSmsMessage! } input SmsMessageCreateInput { from: String! text: String! deletOnSend: Boolean recipients: SmsMessageCreaterecipientsInput Provider: SmsProviderCreateOneInput! CreatedBy: UserCreateOneInput Status: LetsadsSmsMessageStatusCreateOneWithoutSmsMessageInput } input SmsMessageCreateOneWithoutStatusInput { connect: SmsMessageWhereUniqueInput } input SmsMessageCreaterecipientsInput { set: [String!] } input SmsMessageCreateWithoutStatusInput { from: String! text: String! deletOnSend: Boolean recipients: SmsMessageCreaterecipientsInput Provider: SmsProviderCreateOneInput! CreatedBy: UserCreateOneInput } """An edge in a connection.""" type SmsMessageEdge { """The item at the end of the edge.""" node: SmsMessage! """A cursor for use in pagination.""" cursor: String! } enum SmsMessageOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC from_ASC from_DESC text_ASC text_DESC deletOnSend_ASC deletOnSend_DESC } type SmsMessagePreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! from: String! text: String! recipients: [String!]! deletOnSend: Boolean } type SmsMessageResponse { success: Boolean! message: String errors: [Error!]! data: SmsMessage } type SmsMessageSubscriptionPayload { mutation: MutationType! node: SmsMessage updatedFields: [String!] previousValues: SmsMessagePreviousValues } input SmsMessageSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [SmsMessageSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [SmsMessageSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [SmsMessageSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: SmsMessageWhereInput } input SmsMessageUpdateInput { from: String text: String deletOnSend: Boolean recipients: SmsMessageUpdaterecipientsInput Provider: SmsProviderUpdateOneInput CreatedBy: UserUpdateOneInput Status: LetsadsSmsMessageStatusUpdateOneWithoutSmsMessageInput } input SmsMessageUpdateOneWithoutStatusInput { connect: SmsMessageWhereUniqueInput } input SmsMessageUpdaterecipientsInput { set: [String!] } input SmsMessageUpdateWithoutStatusDataInput { from: String text: String deletOnSend: Boolean recipients: SmsMessageUpdaterecipientsInput Provider: SmsProviderUpdateOneInput CreatedBy: UserUpdateOneInput } input SmsMessageWhereInput { """Logical AND on all given filters.""" AND: [SmsMessageWhereInput!] """Logical OR on all given filters.""" OR: [SmsMessageWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [SmsMessageWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime from: String """All values that are not equal to given value.""" from_not: String """All values that are contained in given list.""" from_in: [String!] """All values that are not contained in given list.""" from_not_in: [String!] """All values less than the given value.""" from_lt: String """All values less than or equal the given value.""" from_lte: String """All values greater than the given value.""" from_gt: String """All values greater than or equal the given value.""" from_gte: String """All values containing the given string.""" from_contains: String """All values not containing the given string.""" from_not_contains: String """All values starting with the given string.""" from_starts_with: String """All values not starting with the given string.""" from_not_starts_with: String """All values ending with the given string.""" from_ends_with: String """All values not ending with the given string.""" from_not_ends_with: String text: String """All values that are not equal to given value.""" text_not: String """All values that are contained in given list.""" text_in: [String!] """All values that are not contained in given list.""" text_not_in: [String!] """All values less than the given value.""" text_lt: String """All values less than or equal the given value.""" text_lte: String """All values greater than the given value.""" text_gt: String """All values greater than or equal the given value.""" text_gte: String """All values containing the given string.""" text_contains: String """All values not containing the given string.""" text_not_contains: String """All values starting with the given string.""" text_starts_with: String """All values not starting with the given string.""" text_not_starts_with: String """All values ending with the given string.""" text_ends_with: String """All values not ending with the given string.""" text_not_ends_with: String deletOnSend: Boolean """All values that are not equal to given value.""" deletOnSend_not: Boolean Provider: SmsProviderWhereInput CreatedBy: UserWhereInput Status: LetsadsSmsMessageStatusWhereInput } input SmsMessageWhereUniqueInput { id: ID } type SmsProvider implements Node { id: ID! name: String! credentials: Json CreatedBy(where: UserWhereInput): User } """A connection to a list of items.""" type SmsProviderConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [SmsProviderEdge]! aggregate: AggregateSmsProvider! } input SmsProviderCreateInput { name: String! credentials: Json CreatedBy: UserCreateOneInput } input SmsProviderCreateOneInput { connect: SmsProviderWhereUniqueInput } """An edge in a connection.""" type SmsProviderEdge { """The item at the end of the edge.""" node: SmsProvider! """A cursor for use in pagination.""" cursor: String! } enum SmsProviderOrderByInput { id_ASC id_DESC name_ASC name_DESC credentials_ASC credentials_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } type SmsProviderPreviousValues { id: ID! name: String! credentials: Json } type SmsProviderResponse { success: Boolean! message: String errors: [Error!]! data: SmsProvider } type SmsProviderSubscriptionPayload { mutation: MutationType! node: SmsProvider updatedFields: [String!] previousValues: SmsProviderPreviousValues } input SmsProviderSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [SmsProviderSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [SmsProviderSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [SmsProviderSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: SmsProviderWhereInput } input SmsProviderUpdateDataInput { name: String credentials: Json CreatedBy: UserUpdateOneInput } input SmsProviderUpdateInput { name: String credentials: Json CreatedBy: UserUpdateOneInput } input SmsProviderUpdateOneInput { connect: SmsProviderWhereUniqueInput } input SmsProviderWhereInput { """Logical AND on all given filters.""" AND: [SmsProviderWhereInput!] """Logical OR on all given filters.""" OR: [SmsProviderWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [SmsProviderWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String CreatedBy: UserWhereInput } input SmsProviderWhereUniqueInput { id: ID name: String } type Subscription { invoice(where: InvoiceSubscriptionWhereInput): InvoiceSubscriptionPayload invoiceItem(where: InvoiceItemSubscriptionWhereInput): InvoiceItemSubscriptionPayload notice(where: NoticeSubscriptionWhereInput): NoticeSubscriptionPayload position(where: PositionSubscriptionWhereInput): PositionSubscriptionPayload projectMember(where: ProjectMemberSubscriptionWhereInput): ProjectMemberSubscriptionPayload task(where: TaskSubscriptionWhereInput): TaskSubscriptionPayload taskReaction(where: TaskReactionSubscriptionWhereInput): TaskReactionSubscriptionPayload teamMember(where: TeamMemberSubscriptionWhereInput): TeamMemberSubscriptionPayload timer(where: TimerSubscriptionWhereInput): TimerSubscriptionPayload route(where: RouteSubscriptionWhereInput): RouteSubscriptionPayload discountGroup(where: DiscountGroupSubscriptionWhereInput): DiscountGroupSubscriptionPayload order(where: OrderSubscriptionWhereInput): OrderSubscriptionPayload orderItem(where: OrderItemSubscriptionWhereInput): OrderItemSubscriptionPayload serviceOrder(where: ServiceOrderSubscriptionWhereInput): ServiceOrderSubscriptionPayload chatMessageReaded(where: ChatMessageReadedSubscriptionWhereInput): ChatMessageReadedSubscriptionPayload team(where: TeamSubscriptionWhereInput): TeamSubscriptionPayload project(where: ProjectSubscriptionWhereInput): ProjectSubscriptionPayload template(where: TemplateSubscriptionWhereInput): TemplateSubscriptionPayload service(where: ServiceSubscriptionWhereInput): ServiceSubscriptionPayload chatMessage(where: ChatMessageSubscriptionWhereInput): ChatMessageSubscriptionPayload user(where: UserSubscriptionWhereInput): UserSubscriptionPayload } type Tag implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! name: String! status: TagStatus! Resources(where: ResourceTagWhereInput, orderBy: ResourceTagOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ResourceTag!] CreatedBy(where: UserWhereInput): User! } """A connection to a list of items.""" type TagConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [TagEdge]! aggregate: AggregateTag! } input TagCreateInput { name: String! status: TagStatus Resources: ResourceTagCreateManyWithoutTagInput CreatedBy: UserCreateOneWithoutTagsInput! } input TagCreateManyWithoutCreatedByInput { connect: [TagWhereUniqueInput!] } input TagCreateOneWithoutResourcesInput { connect: TagWhereUniqueInput } input TagCreateWithoutCreatedByInput { name: String! status: TagStatus Resources: ResourceTagCreateManyWithoutTagInput } input TagCreateWithoutResourcesInput { name: String! status: TagStatus CreatedBy: UserCreateOneWithoutTagsInput! } """An edge in a connection.""" type TagEdge { """The item at the end of the edge.""" node: Tag! """A cursor for use in pagination.""" cursor: String! } enum TagOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC name_ASC name_DESC status_ASC status_DESC } type TagPreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! name: String! status: TagStatus! } enum TagStatus { Active Moderated Blocked } type TagSubscriptionPayload { mutation: MutationType! node: Tag updatedFields: [String!] previousValues: TagPreviousValues } input TagSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [TagSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [TagSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TagSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: TagWhereInput } input TagUpdateInput { name: String status: TagStatus Resources: ResourceTagUpdateManyWithoutTagInput CreatedBy: UserUpdateOneWithoutTagsInput } input TagUpdateManyWithoutCreatedByInput { connect: [TagWhereUniqueInput!] disconnect: [TagWhereUniqueInput!] } input TagUpdateOneWithoutResourcesInput { connect: TagWhereUniqueInput } input TagUpdateWithoutCreatedByDataInput { name: String status: TagStatus Resources: ResourceTagUpdateManyWithoutTagInput } input TagUpdateWithoutResourcesDataInput { name: String status: TagStatus CreatedBy: UserUpdateOneWithoutTagsInput } input TagUpdateWithWhereUniqueWithoutCreatedByInput { where: TagWhereUniqueInput! data: TagUpdateWithoutCreatedByDataInput! } input TagUpsertWithWhereUniqueWithoutCreatedByInput { where: TagWhereUniqueInput! } input TagWhereInput { """Logical AND on all given filters.""" AND: [TagWhereInput!] """Logical OR on all given filters.""" OR: [TagWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TagWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String status: TagStatus """All values that are not equal to given value.""" status_not: TagStatus """All values that are contained in given list.""" status_in: [TagStatus!] """All values that are not contained in given list.""" status_not_in: [TagStatus!] Resources_every: ResourceTagWhereInput Resources_some: ResourceTagWhereInput Resources_none: ResourceTagWhereInput CreatedBy: UserWhereInput } input TagWhereUniqueInput { id: ID name: String } type Tarif implements Node { id: ID! code: ID! name: String! description: String price: Float priceCooficient: Float Service(where: ServiceWhereInput): Service! } """A connection to a list of items.""" type TarifConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [TarifEdge]! aggregate: AggregateTarif! } input TarifCreateInput { code: ID! name: String! description: String price: Float priceCooficient: Float Service: ServiceCreateOneWithoutTarifsInput! } input TarifCreateManyWithoutServiceInput { connect: [TarifWhereUniqueInput!] } input TarifCreateOneInput { connect: TarifWhereUniqueInput } input TarifCreateWithoutServiceInput { code: ID! name: String! description: String price: Float priceCooficient: Float } """An edge in a connection.""" type TarifEdge { """The item at the end of the edge.""" node: Tarif! """A cursor for use in pagination.""" cursor: String! } enum TarifOrderByInput { id_ASC id_DESC code_ASC code_DESC name_ASC name_DESC description_ASC description_DESC price_ASC price_DESC priceCooficient_ASC priceCooficient_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } type TarifPreviousValues { id: ID! code: ID! name: String! description: String price: Float priceCooficient: Float } type TarifSubscriptionPayload { mutation: MutationType! node: Tarif updatedFields: [String!] previousValues: TarifPreviousValues } input TarifSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [TarifSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [TarifSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TarifSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: TarifWhereInput } input TarifUpdateDataInput { code: ID name: String description: String price: Float priceCooficient: Float Service: ServiceUpdateOneWithoutTarifsInput } input TarifUpdateInput { code: ID name: String description: String price: Float priceCooficient: Float Service: ServiceUpdateOneWithoutTarifsInput } input TarifUpdateManyWithoutServiceInput { connect: [TarifWhereUniqueInput!] disconnect: [TarifWhereUniqueInput!] } input TarifUpdateOneInput { connect: TarifWhereUniqueInput disconnect: Boolean } input TarifUpdateWithoutServiceDataInput { code: ID name: String description: String price: Float priceCooficient: Float } input TarifUpdateWithWhereUniqueWithoutServiceInput { where: TarifWhereUniqueInput! data: TarifUpdateWithoutServiceDataInput! } input TarifUpsertWithWhereUniqueWithoutServiceInput { where: TarifWhereUniqueInput! } input TarifWhereInput { """Logical AND on all given filters.""" AND: [TarifWhereInput!] """Logical OR on all given filters.""" OR: [TarifWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TarifWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID code: ID """All values that are not equal to given value.""" code_not: ID """All values that are contained in given list.""" code_in: [ID!] """All values that are not contained in given list.""" code_not_in: [ID!] """All values less than the given value.""" code_lt: ID """All values less than or equal the given value.""" code_lte: ID """All values greater than the given value.""" code_gt: ID """All values greater than or equal the given value.""" code_gte: ID """All values containing the given string.""" code_contains: ID """All values not containing the given string.""" code_not_contains: ID """All values starting with the given string.""" code_starts_with: ID """All values not starting with the given string.""" code_not_starts_with: ID """All values ending with the given string.""" code_ends_with: ID """All values not ending with the given string.""" code_not_ends_with: ID name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String description: String """All values that are not equal to given value.""" description_not: String """All values that are contained in given list.""" description_in: [String!] """All values that are not contained in given list.""" description_not_in: [String!] """All values less than the given value.""" description_lt: String """All values less than or equal the given value.""" description_lte: String """All values greater than the given value.""" description_gt: String """All values greater than or equal the given value.""" description_gte: String """All values containing the given string.""" description_contains: String """All values not containing the given string.""" description_not_contains: String """All values starting with the given string.""" description_starts_with: String """All values not starting with the given string.""" description_not_starts_with: String """All values ending with the given string.""" description_ends_with: String """All values not ending with the given string.""" description_not_ends_with: String price: Float """All values that are not equal to given value.""" price_not: Float """All values that are contained in given list.""" price_in: [Float!] """All values that are not contained in given list.""" price_not_in: [Float!] """All values less than the given value.""" price_lt: Float """All values less than or equal the given value.""" price_lte: Float """All values greater than the given value.""" price_gt: Float """All values greater than or equal the given value.""" price_gte: Float priceCooficient: Float """All values that are not equal to given value.""" priceCooficient_not: Float """All values that are contained in given list.""" priceCooficient_in: [Float!] """All values that are not contained in given list.""" priceCooficient_not_in: [Float!] """All values less than the given value.""" priceCooficient_lt: Float """All values less than or equal the given value.""" priceCooficient_lte: Float """All values greater than the given value.""" priceCooficient_gt: Float """All values greater than or equal the given value.""" priceCooficient_gte: Float Service: ServiceWhereInput } input TarifWhereUniqueInput { id: ID code: ID name: String } type Task implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! name: String! description: String content: Json status: TaskStatus! Project(where: ProjectWhereInput): Project! CreatedBy(where: UserWhereInput): User! Members(where: TaskMemberWhereInput, orderBy: TaskMemberOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [TaskMember!] Parent(where: TaskWhereInput): Task Childs(where: TaskWhereInput, orderBy: TaskOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Task!] RelatedFrom(where: TaskWhereInput, orderBy: TaskOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Task!] RelatedTo(where: TaskWhereInput, orderBy: TaskOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Task!] startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Timers(where: TimerWhereInput, orderBy: TimerOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Timer!] Reactions(where: TaskReactionWhereInput, orderBy: TaskReactionOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [TaskReaction!] ChatRoom(where: ChatRoomWhereInput): ChatRoom } """A connection to a list of items.""" type TaskConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [TaskEdge]! aggregate: AggregateTask! } input TaskCreateInput { name: String! description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Project: ProjectCreateOneWithoutTasksInput! Members: TaskMemberCreateManyWithoutTaskInput Parent: TaskCreateOneWithoutChildsInput Childs: TaskCreateManyWithoutParentInput RelatedFrom: TaskCreateManyWithoutRelatedToInput RelatedTo: TaskCreateManyWithoutRelatedFromInput Timers: TimerCreateManyWithoutTaskInput } input TaskCreateManyWithoutParentInput { connect: [TaskWhereUniqueInput!] } input TaskCreateManyWithoutProjectInput { connect: [TaskWhereUniqueInput!] } input TaskCreateManyWithoutRelatedFromInput { connect: [TaskWhereUniqueInput!] } input TaskCreateManyWithoutRelatedToInput { connect: [TaskWhereUniqueInput!] } input TaskCreateOneInput { connect: TaskWhereUniqueInput } input TaskCreateOneWithoutChatRoomInput { connect: TaskWhereUniqueInput } input TaskCreateOneWithoutChildsInput { connect: TaskWhereUniqueInput } input TaskCreateOneWithoutMembersInput { connect: TaskWhereUniqueInput } input TaskCreateOneWithoutReactionsInput { connect: TaskWhereUniqueInput } input TaskCreateOneWithoutTimersInput { connect: TaskWhereUniqueInput } input TaskCreateWithoutChildsInput { name: String! description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Project: ProjectCreateOneWithoutTasksInput! CreatedBy: UserCreateOneInput! Members: TaskMemberCreateManyWithoutTaskInput Parent: TaskCreateOneWithoutChildsInput RelatedFrom: TaskCreateManyWithoutRelatedToInput RelatedTo: TaskCreateManyWithoutRelatedFromInput Timers: TimerCreateManyWithoutTaskInput Reactions: TaskReactionCreateManyWithoutTaskInput ChatRoom: ChatRoomCreateOneInput } input TaskCreateWithoutMembersInput { name: String! description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Project: ProjectCreateOneWithoutTasksInput! CreatedBy: UserCreateOneInput! Parent: TaskCreateOneWithoutChildsInput Childs: TaskCreateManyWithoutParentInput RelatedFrom: TaskCreateManyWithoutRelatedToInput RelatedTo: TaskCreateManyWithoutRelatedFromInput Timers: TimerCreateManyWithoutTaskInput Reactions: TaskReactionCreateManyWithoutTaskInput ChatRoom: ChatRoomCreateOneInput } input TaskCreateWithoutParentInput { name: String! description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Project: ProjectCreateOneWithoutTasksInput! CreatedBy: UserCreateOneInput! Members: TaskMemberCreateManyWithoutTaskInput Childs: TaskCreateManyWithoutParentInput RelatedFrom: TaskCreateManyWithoutRelatedToInput RelatedTo: TaskCreateManyWithoutRelatedFromInput Timers: TimerCreateManyWithoutTaskInput Reactions: TaskReactionCreateManyWithoutTaskInput ChatRoom: ChatRoomCreateOneInput } input TaskCreateWithoutProjectInput { name: String! description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime CreatedBy: UserCreateOneInput! Members: TaskMemberCreateManyWithoutTaskInput Parent: TaskCreateOneWithoutChildsInput Childs: TaskCreateManyWithoutParentInput RelatedFrom: TaskCreateManyWithoutRelatedToInput RelatedTo: TaskCreateManyWithoutRelatedFromInput Timers: TimerCreateManyWithoutTaskInput Reactions: TaskReactionCreateManyWithoutTaskInput ChatRoom: ChatRoomCreateOneInput } input TaskCreateWithoutReactionsInput { name: String! description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Project: ProjectCreateOneWithoutTasksInput! CreatedBy: UserCreateOneInput! Members: TaskMemberCreateManyWithoutTaskInput Parent: TaskCreateOneWithoutChildsInput Childs: TaskCreateManyWithoutParentInput RelatedFrom: TaskCreateManyWithoutRelatedToInput RelatedTo: TaskCreateManyWithoutRelatedFromInput Timers: TimerCreateManyWithoutTaskInput ChatRoom: ChatRoomCreateOneInput } input TaskCreateWithoutRelatedFromInput { name: String! description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Project: ProjectCreateOneWithoutTasksInput! CreatedBy: UserCreateOneInput! Members: TaskMemberCreateManyWithoutTaskInput Parent: TaskCreateOneWithoutChildsInput Childs: TaskCreateManyWithoutParentInput RelatedTo: TaskCreateManyWithoutRelatedFromInput Timers: TimerCreateManyWithoutTaskInput Reactions: TaskReactionCreateManyWithoutTaskInput ChatRoom: ChatRoomCreateOneInput } input TaskCreateWithoutRelatedToInput { name: String! description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Project: ProjectCreateOneWithoutTasksInput! CreatedBy: UserCreateOneInput! Members: TaskMemberCreateManyWithoutTaskInput Parent: TaskCreateOneWithoutChildsInput Childs: TaskCreateManyWithoutParentInput RelatedFrom: TaskCreateManyWithoutRelatedToInput Timers: TimerCreateManyWithoutTaskInput Reactions: TaskReactionCreateManyWithoutTaskInput ChatRoom: ChatRoomCreateOneInput } input TaskCreateWithoutTimersInput { name: String! description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Project: ProjectCreateOneWithoutTasksInput! CreatedBy: UserCreateOneInput! Members: TaskMemberCreateManyWithoutTaskInput Parent: TaskCreateOneWithoutChildsInput Childs: TaskCreateManyWithoutParentInput RelatedFrom: TaskCreateManyWithoutRelatedToInput RelatedTo: TaskCreateManyWithoutRelatedFromInput Reactions: TaskReactionCreateManyWithoutTaskInput ChatRoom: ChatRoomCreateOneInput } """An edge in a connection.""" type TaskEdge { """The item at the end of the edge.""" node: Task! """A cursor for use in pagination.""" cursor: String! } type TaskMember implements Node { id: ID! CreatedBy(where: UserWhereInput): User! Task(where: TaskWhereInput): Task! User(where: UserWhereInput): User! status: TaskMemberStatus! } """A connection to a list of items.""" type TaskMemberConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [TaskMemberEdge]! aggregate: AggregateTaskMember! } input TaskMemberCreateInput { status: TaskMemberStatus! CreatedBy: UserCreateOneInput! Task: TaskCreateOneWithoutMembersInput! User: UserCreateOneWithoutTasksInput! } input TaskMemberCreateManyWithoutTaskInput { connect: [TaskMemberWhereUniqueInput!] } input TaskMemberCreateManyWithoutUserInput { connect: [TaskMemberWhereUniqueInput!] } input TaskMemberCreateWithoutTaskInput { status: TaskMemberStatus! CreatedBy: UserCreateOneInput! User: UserCreateOneWithoutTasksInput! } input TaskMemberCreateWithoutUserInput { status: TaskMemberStatus! CreatedBy: UserCreateOneInput! Task: TaskCreateOneWithoutMembersInput! } """An edge in a connection.""" type TaskMemberEdge { """The item at the end of the edge.""" node: TaskMember! """A cursor for use in pagination.""" cursor: String! } enum TaskMemberOrderByInput { id_ASC id_DESC status_ASC status_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } type TaskMemberPreviousValues { id: ID! status: TaskMemberStatus! } enum TaskMemberStatus { Invited Active Fired Quit } type TaskMemberSubscriptionPayload { mutation: MutationType! node: TaskMember updatedFields: [String!] previousValues: TaskMemberPreviousValues } input TaskMemberSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [TaskMemberSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [TaskMemberSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TaskMemberSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: TaskMemberWhereInput } input TaskMemberUpdateInput { status: TaskMemberStatus CreatedBy: UserUpdateOneInput Task: TaskUpdateOneWithoutMembersInput User: UserUpdateOneWithoutTasksInput } input TaskMemberUpdateManyWithoutTaskInput { connect: [TaskMemberWhereUniqueInput!] disconnect: [TaskMemberWhereUniqueInput!] } input TaskMemberUpdateManyWithoutUserInput { connect: [TaskMemberWhereUniqueInput!] disconnect: [TaskMemberWhereUniqueInput!] } input TaskMemberUpdateWithoutTaskDataInput { status: TaskMemberStatus CreatedBy: UserUpdateOneInput User: UserUpdateOneWithoutTasksInput } input TaskMemberUpdateWithoutUserDataInput { status: TaskMemberStatus CreatedBy: UserUpdateOneInput Task: TaskUpdateOneWithoutMembersInput } input TaskMemberUpdateWithWhereUniqueWithoutTaskInput { where: TaskMemberWhereUniqueInput! data: TaskMemberUpdateWithoutTaskDataInput! } input TaskMemberUpdateWithWhereUniqueWithoutUserInput { where: TaskMemberWhereUniqueInput! data: TaskMemberUpdateWithoutUserDataInput! } input TaskMemberUpsertWithWhereUniqueWithoutTaskInput { where: TaskMemberWhereUniqueInput! } input TaskMemberUpsertWithWhereUniqueWithoutUserInput { where: TaskMemberWhereUniqueInput! } input TaskMemberWhereInput { """Logical AND on all given filters.""" AND: [TaskMemberWhereInput!] """Logical OR on all given filters.""" OR: [TaskMemberWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TaskMemberWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID status: TaskMemberStatus """All values that are not equal to given value.""" status_not: TaskMemberStatus """All values that are contained in given list.""" status_in: [TaskMemberStatus!] """All values that are not contained in given list.""" status_not_in: [TaskMemberStatus!] CreatedBy: UserWhereInput Task: TaskWhereInput User: UserWhereInput } input TaskMemberWhereUniqueInput { id: ID } enum TaskOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC name_ASC name_DESC description_ASC description_DESC content_ASC content_DESC status_ASC status_DESC startDatePlaning_ASC startDatePlaning_DESC endDatePlaning_ASC endDatePlaning_DESC startDate_ASC startDate_DESC endDate_ASC endDate_DESC } type TaskPreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! name: String! description: String content: Json status: TaskStatus! startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime } type TaskReaction implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! CreatedBy(where: UserWhereInput): User Task(where: TaskWhereInput): Task! type: TaskReactionType } """A connection to a list of items.""" type TaskReactionConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [TaskReactionEdge]! aggregate: AggregateTaskReaction! } input TaskReactionCreateInput { type: TaskReactionType Task: TaskCreateOneInput! } input TaskReactionCreateManyWithoutCreatedByInput { connect: [TaskReactionWhereUniqueInput!] } input TaskReactionCreateManyWithoutTaskInput { connect: [TaskReactionWhereUniqueInput!] } input TaskReactionCreateWithoutCreatedByInput { type: TaskReactionType Task: TaskCreateOneWithoutReactionsInput! } input TaskReactionCreateWithoutTaskInput { type: TaskReactionType CreatedBy: UserCreateOneWithoutTasksReactionsInput } """An edge in a connection.""" type TaskReactionEdge { """The item at the end of the edge.""" node: TaskReaction! """A cursor for use in pagination.""" cursor: String! } enum TaskReactionOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC type_ASC type_DESC } type TaskReactionPreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! type: TaskReactionType } type TaskReactionResponse { success: Boolean! message: String errors: [Error!]! data: TaskReaction } type TaskReactionSubscriptionPayload { mutation: MutationType! node: TaskReaction updatedFields: [String!] previousValues: TaskReactionPreviousValues } input TaskReactionSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [TaskReactionSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [TaskReactionSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TaskReactionSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: TaskReactionWhereInput } enum TaskReactionType { UpVote } input TaskReactionUpdateInput { type: TaskReactionType Task: TaskUpdateOneInput } input TaskReactionUpdateManyWithoutCreatedByInput { connect: [TaskReactionWhereUniqueInput!] disconnect: [TaskReactionWhereUniqueInput!] } input TaskReactionUpdateManyWithoutTaskInput { connect: [TaskReactionWhereUniqueInput!] disconnect: [TaskReactionWhereUniqueInput!] } input TaskReactionUpdateWithoutCreatedByDataInput { type: TaskReactionType Task: TaskUpdateOneWithoutReactionsInput } input TaskReactionUpdateWithoutTaskDataInput { type: TaskReactionType CreatedBy: UserUpdateOneWithoutTasksReactionsInput } input TaskReactionUpdateWithWhereUniqueWithoutCreatedByInput { where: TaskReactionWhereUniqueInput! data: TaskReactionUpdateWithoutCreatedByDataInput! } input TaskReactionUpdateWithWhereUniqueWithoutTaskInput { where: TaskReactionWhereUniqueInput! data: TaskReactionUpdateWithoutTaskDataInput! } input TaskReactionUpsertWithWhereUniqueWithoutCreatedByInput { where: TaskReactionWhereUniqueInput! } input TaskReactionUpsertWithWhereUniqueWithoutTaskInput { where: TaskReactionWhereUniqueInput! } input TaskReactionWhereInput { """Logical AND on all given filters.""" AND: [TaskReactionWhereInput!] """Logical OR on all given filters.""" OR: [TaskReactionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TaskReactionWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime type: TaskReactionType """All values that are not equal to given value.""" type_not: TaskReactionType """All values that are contained in given list.""" type_in: [TaskReactionType!] """All values that are not contained in given list.""" type_not_in: [TaskReactionType!] CreatedBy: UserWhereInput Task: TaskWhereInput } input TaskReactionWhereUniqueInput { id: ID } type TaskResponse { success: Boolean! message: String errors: [Error!]! data: Task } enum TaskStatus { New Accepted Rejected Progress Paused Done Discuss Approved RevisionsRequired Completed } type TaskSubscriptionPayload { mutation: MutationType! node: Task updatedFields: [String!] previousValues: TaskPreviousValues } input TaskSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [TaskSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [TaskSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TaskSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: TaskWhereInput } input TaskUpdateInput { name: String description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Project: ProjectUpdateOneWithoutTasksInput Members: TaskMemberUpdateManyWithoutTaskInput Parent: TaskUpdateOneWithoutChildsInput Childs: TaskUpdateManyWithoutParentInput RelatedFrom: TaskUpdateManyWithoutRelatedToInput RelatedTo: TaskUpdateManyWithoutRelatedFromInput Timers: TimerUpdateManyWithoutTaskInput } input TaskUpdateManyWithoutParentInput { connect: [TaskWhereUniqueInput!] disconnect: [TaskWhereUniqueInput!] } input TaskUpdateManyWithoutProjectInput { connect: [TaskWhereUniqueInput!] disconnect: [TaskWhereUniqueInput!] } input TaskUpdateManyWithoutRelatedFromInput { connect: [TaskWhereUniqueInput!] disconnect: [TaskWhereUniqueInput!] } input TaskUpdateManyWithoutRelatedToInput { connect: [TaskWhereUniqueInput!] disconnect: [TaskWhereUniqueInput!] } input TaskUpdateOneInput { connect: TaskWhereUniqueInput } input TaskUpdateOneWithoutChildsInput { connect: TaskWhereUniqueInput disconnect: Boolean } input TaskUpdateOneWithoutMembersInput { connect: TaskWhereUniqueInput } input TaskUpdateOneWithoutReactionsInput { connect: TaskWhereUniqueInput } input TaskUpdateOneWithoutTimersInput { connect: TaskWhereUniqueInput } input TaskUpdateWithoutChildsDataInput { name: String description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Project: ProjectUpdateOneWithoutTasksInput CreatedBy: UserUpdateOneInput Members: TaskMemberUpdateManyWithoutTaskInput Parent: TaskUpdateOneWithoutChildsInput RelatedFrom: TaskUpdateManyWithoutRelatedToInput RelatedTo: TaskUpdateManyWithoutRelatedFromInput Timers: TimerUpdateManyWithoutTaskInput Reactions: TaskReactionUpdateManyWithoutTaskInput ChatRoom: ChatRoomUpdateOneInput } input TaskUpdateWithoutMembersDataInput { name: String description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Project: ProjectUpdateOneWithoutTasksInput CreatedBy: UserUpdateOneInput Parent: TaskUpdateOneWithoutChildsInput Childs: TaskUpdateManyWithoutParentInput RelatedFrom: TaskUpdateManyWithoutRelatedToInput RelatedTo: TaskUpdateManyWithoutRelatedFromInput Timers: TimerUpdateManyWithoutTaskInput Reactions: TaskReactionUpdateManyWithoutTaskInput ChatRoom: ChatRoomUpdateOneInput } input TaskUpdateWithoutParentDataInput { name: String description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Project: ProjectUpdateOneWithoutTasksInput CreatedBy: UserUpdateOneInput Members: TaskMemberUpdateManyWithoutTaskInput Childs: TaskUpdateManyWithoutParentInput RelatedFrom: TaskUpdateManyWithoutRelatedToInput RelatedTo: TaskUpdateManyWithoutRelatedFromInput Timers: TimerUpdateManyWithoutTaskInput Reactions: TaskReactionUpdateManyWithoutTaskInput ChatRoom: ChatRoomUpdateOneInput } input TaskUpdateWithoutProjectDataInput { name: String description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime CreatedBy: UserUpdateOneInput Members: TaskMemberUpdateManyWithoutTaskInput Parent: TaskUpdateOneWithoutChildsInput Childs: TaskUpdateManyWithoutParentInput RelatedFrom: TaskUpdateManyWithoutRelatedToInput RelatedTo: TaskUpdateManyWithoutRelatedFromInput Timers: TimerUpdateManyWithoutTaskInput Reactions: TaskReactionUpdateManyWithoutTaskInput ChatRoom: ChatRoomUpdateOneInput } input TaskUpdateWithoutReactionsDataInput { name: String description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Project: ProjectUpdateOneWithoutTasksInput CreatedBy: UserUpdateOneInput Members: TaskMemberUpdateManyWithoutTaskInput Parent: TaskUpdateOneWithoutChildsInput Childs: TaskUpdateManyWithoutParentInput RelatedFrom: TaskUpdateManyWithoutRelatedToInput RelatedTo: TaskUpdateManyWithoutRelatedFromInput Timers: TimerUpdateManyWithoutTaskInput ChatRoom: ChatRoomUpdateOneInput } input TaskUpdateWithoutRelatedFromDataInput { name: String description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Project: ProjectUpdateOneWithoutTasksInput CreatedBy: UserUpdateOneInput Members: TaskMemberUpdateManyWithoutTaskInput Parent: TaskUpdateOneWithoutChildsInput Childs: TaskUpdateManyWithoutParentInput RelatedTo: TaskUpdateManyWithoutRelatedFromInput Timers: TimerUpdateManyWithoutTaskInput Reactions: TaskReactionUpdateManyWithoutTaskInput ChatRoom: ChatRoomUpdateOneInput } input TaskUpdateWithoutRelatedToDataInput { name: String description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Project: ProjectUpdateOneWithoutTasksInput CreatedBy: UserUpdateOneInput Members: TaskMemberUpdateManyWithoutTaskInput Parent: TaskUpdateOneWithoutChildsInput Childs: TaskUpdateManyWithoutParentInput RelatedFrom: TaskUpdateManyWithoutRelatedToInput Timers: TimerUpdateManyWithoutTaskInput Reactions: TaskReactionUpdateManyWithoutTaskInput ChatRoom: ChatRoomUpdateOneInput } input TaskUpdateWithoutTimersDataInput { name: String description: String content: Json status: TaskStatus startDatePlaning: DateTime endDatePlaning: DateTime startDate: DateTime endDate: DateTime Project: ProjectUpdateOneWithoutTasksInput CreatedBy: UserUpdateOneInput Members: TaskMemberUpdateManyWithoutTaskInput Parent: TaskUpdateOneWithoutChildsInput Childs: TaskUpdateManyWithoutParentInput RelatedFrom: TaskUpdateManyWithoutRelatedToInput RelatedTo: TaskUpdateManyWithoutRelatedFromInput Reactions: TaskReactionUpdateManyWithoutTaskInput ChatRoom: ChatRoomUpdateOneInput } input TaskUpdateWithWhereUniqueWithoutParentInput { where: TaskWhereUniqueInput! data: TaskUpdateWithoutParentDataInput! } input TaskUpdateWithWhereUniqueWithoutProjectInput { where: TaskWhereUniqueInput! data: TaskUpdateWithoutProjectDataInput! } input TaskUpdateWithWhereUniqueWithoutRelatedFromInput { where: TaskWhereUniqueInput! data: TaskUpdateWithoutRelatedFromDataInput! } input TaskUpdateWithWhereUniqueWithoutRelatedToInput { where: TaskWhereUniqueInput! data: TaskUpdateWithoutRelatedToDataInput! } input TaskUpsertWithWhereUniqueWithoutParentInput { where: TaskWhereUniqueInput! } input TaskUpsertWithWhereUniqueWithoutProjectInput { where: TaskWhereUniqueInput! } input TaskUpsertWithWhereUniqueWithoutRelatedFromInput { where: TaskWhereUniqueInput! } input TaskUpsertWithWhereUniqueWithoutRelatedToInput { where: TaskWhereUniqueInput! } input TaskWhereInput { """Logical AND on all given filters.""" AND: [TaskWhereInput!] """Logical OR on all given filters.""" OR: [TaskWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TaskWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String description: String """All values that are not equal to given value.""" description_not: String """All values that are contained in given list.""" description_in: [String!] """All values that are not contained in given list.""" description_not_in: [String!] """All values less than the given value.""" description_lt: String """All values less than or equal the given value.""" description_lte: String """All values greater than the given value.""" description_gt: String """All values greater than or equal the given value.""" description_gte: String """All values containing the given string.""" description_contains: String """All values not containing the given string.""" description_not_contains: String """All values starting with the given string.""" description_starts_with: String """All values not starting with the given string.""" description_not_starts_with: String """All values ending with the given string.""" description_ends_with: String """All values not ending with the given string.""" description_not_ends_with: String status: TaskStatus """All values that are not equal to given value.""" status_not: TaskStatus """All values that are contained in given list.""" status_in: [TaskStatus!] """All values that are not contained in given list.""" status_not_in: [TaskStatus!] startDatePlaning: DateTime """All values that are not equal to given value.""" startDatePlaning_not: DateTime """All values that are contained in given list.""" startDatePlaning_in: [DateTime!] """All values that are not contained in given list.""" startDatePlaning_not_in: [DateTime!] """All values less than the given value.""" startDatePlaning_lt: DateTime """All values less than or equal the given value.""" startDatePlaning_lte: DateTime """All values greater than the given value.""" startDatePlaning_gt: DateTime """All values greater than or equal the given value.""" startDatePlaning_gte: DateTime endDatePlaning: DateTime """All values that are not equal to given value.""" endDatePlaning_not: DateTime """All values that are contained in given list.""" endDatePlaning_in: [DateTime!] """All values that are not contained in given list.""" endDatePlaning_not_in: [DateTime!] """All values less than the given value.""" endDatePlaning_lt: DateTime """All values less than or equal the given value.""" endDatePlaning_lte: DateTime """All values greater than the given value.""" endDatePlaning_gt: DateTime """All values greater than or equal the given value.""" endDatePlaning_gte: DateTime startDate: DateTime """All values that are not equal to given value.""" startDate_not: DateTime """All values that are contained in given list.""" startDate_in: [DateTime!] """All values that are not contained in given list.""" startDate_not_in: [DateTime!] """All values less than the given value.""" startDate_lt: DateTime """All values less than or equal the given value.""" startDate_lte: DateTime """All values greater than the given value.""" startDate_gt: DateTime """All values greater than or equal the given value.""" startDate_gte: DateTime endDate: DateTime """All values that are not equal to given value.""" endDate_not: DateTime """All values that are contained in given list.""" endDate_in: [DateTime!] """All values that are not contained in given list.""" endDate_not_in: [DateTime!] """All values less than the given value.""" endDate_lt: DateTime """All values less than or equal the given value.""" endDate_lte: DateTime """All values greater than the given value.""" endDate_gt: DateTime """All values greater than or equal the given value.""" endDate_gte: DateTime Project: ProjectWhereInput CreatedBy: UserWhereInput Members_every: TaskMemberWhereInput Members_some: TaskMemberWhereInput Members_none: TaskMemberWhereInput Parent: TaskWhereInput Childs_every: TaskWhereInput Childs_some: TaskWhereInput Childs_none: TaskWhereInput RelatedFrom_every: TaskWhereInput RelatedFrom_some: TaskWhereInput RelatedFrom_none: TaskWhereInput RelatedTo_every: TaskWhereInput RelatedTo_some: TaskWhereInput RelatedTo_none: TaskWhereInput Timers_every: TimerWhereInput Timers_some: TimerWhereInput Timers_none: TimerWhereInput Reactions_every: TaskReactionWhereInput Reactions_some: TaskReactionWhereInput Reactions_none: TaskReactionWhereInput ChatRoom: ChatRoomWhereInput } input TaskWhereUniqueInput { id: ID } type Team implements Node { id: ID! name: String! Parent(where: TeamWhereInput): Team Childs(where: TeamWhereInput, orderBy: TeamOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Team!] CreatedBy(where: UserWhereInput): User! Members(where: TeamMemberWhereInput, orderBy: TeamMemberOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [TeamMember!] Projects(where: ProjectWhereInput, orderBy: ProjectOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Project!] OrderedProjects(where: ProjectWhereInput, orderBy: ProjectOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Project!] status: TeamStatus! } """A connection to a list of items.""" type TeamConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [TeamEdge]! aggregate: AggregateTeam! } input TeamCreateInput { name: String! status: TeamStatus Parent: TeamCreateOneWithoutChildsInput Childs: TeamCreateManyWithoutParentInput Projects: ProjectCreateManyWithoutTeamInput } input TeamCreateManyInput { connect: [TeamWhereUniqueInput!] } input TeamCreateManyWithoutCreatedByInput { connect: [TeamWhereUniqueInput!] } input TeamCreateManyWithoutOrderedProjectsInput { connect: [TeamWhereUniqueInput!] } input TeamCreateManyWithoutParentInput { connect: [TeamWhereUniqueInput!] } input TeamCreateOneInput { connect: TeamWhereUniqueInput } input TeamCreateOneWithoutChildsInput { connect: TeamWhereUniqueInput } input TeamCreateOneWithoutMembersInput { connect: TeamWhereUniqueInput } input TeamCreateOneWithoutProjectsInput { connect: TeamWhereUniqueInput } input TeamCreateWithoutChildsInput { name: String! status: TeamStatus Parent: TeamCreateOneWithoutChildsInput CreatedBy: UserCreateOneWithoutTeamsCreatedInput! Members: TeamMemberCreateManyWithoutTeamInput Projects: ProjectCreateManyWithoutTeamInput OrderedProjects: ProjectCreateManyWithoutCustomersInput } input TeamCreateWithoutCreatedByInput { name: String! status: TeamStatus Parent: TeamCreateOneWithoutChildsInput Childs: TeamCreateManyWithoutParentInput Members: TeamMemberCreateManyWithoutTeamInput Projects: ProjectCreateManyWithoutTeamInput OrderedProjects: ProjectCreateManyWithoutCustomersInput } input TeamCreateWithoutMembersInput { name: String! status: TeamStatus Parent: TeamCreateOneWithoutChildsInput Childs: TeamCreateManyWithoutParentInput CreatedBy: UserCreateOneWithoutTeamsCreatedInput! Projects: ProjectCreateManyWithoutTeamInput OrderedProjects: ProjectCreateManyWithoutCustomersInput } input TeamCreateWithoutOrderedProjectsInput { name: String! status: TeamStatus Parent: TeamCreateOneWithoutChildsInput Childs: TeamCreateManyWithoutParentInput CreatedBy: UserCreateOneWithoutTeamsCreatedInput! Members: TeamMemberCreateManyWithoutTeamInput Projects: ProjectCreateManyWithoutTeamInput } input TeamCreateWithoutParentInput { name: String! status: TeamStatus Childs: TeamCreateManyWithoutParentInput CreatedBy: UserCreateOneWithoutTeamsCreatedInput! Members: TeamMemberCreateManyWithoutTeamInput Projects: ProjectCreateManyWithoutTeamInput OrderedProjects: ProjectCreateManyWithoutCustomersInput } input TeamCreateWithoutProjectsInput { name: String! status: TeamStatus Parent: TeamCreateOneWithoutChildsInput Childs: TeamCreateManyWithoutParentInput CreatedBy: UserCreateOneWithoutTeamsCreatedInput! Members: TeamMemberCreateManyWithoutTeamInput OrderedProjects: ProjectCreateManyWithoutCustomersInput } """An edge in a connection.""" type TeamEdge { """The item at the end of the edge.""" node: Team! """A cursor for use in pagination.""" cursor: String! } type TeamMember implements Node { id: ID! Team(where: TeamWhereInput): Team! User(where: UserWhereInput): User! CreatedBy(where: UserWhereInput): User! status: TeamMemberStatus } """A connection to a list of items.""" type TeamMemberConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [TeamMemberEdge]! aggregate: AggregateTeamMember! } input TeamMemberCreateInput { status: TeamMemberStatus = Active Team: TeamCreateOneWithoutMembersInput! User: UserCreateOneWithoutTeamsInput! } input TeamMemberCreateManyWithoutTeamInput { connect: [TeamMemberWhereUniqueInput!] } input TeamMemberCreateManyWithoutUserInput { connect: [TeamMemberWhereUniqueInput!] } input TeamMemberCreateWithoutTeamInput { status: TeamMemberStatus User: UserCreateOneWithoutTeamsInput! CreatedBy: UserCreateOneInput! } input TeamMemberCreateWithoutUserInput { status: TeamMemberStatus Team: TeamCreateOneWithoutMembersInput! CreatedBy: UserCreateOneInput! } """An edge in a connection.""" type TeamMemberEdge { """The item at the end of the edge.""" node: TeamMember! """A cursor for use in pagination.""" cursor: String! } enum TeamMemberOrderByInput { id_ASC id_DESC status_ASC status_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } type TeamMemberPreviousValues { id: ID! status: TeamMemberStatus } type TeamMemberResponse { success: Boolean! message: String errors: [Error!]! data: TeamMember } enum TeamMemberStatus { Invited Active Fired } type TeamMemberSubscriptionPayload { mutation: MutationType! node: TeamMember updatedFields: [String!] previousValues: TeamMemberPreviousValues } input TeamMemberSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [TeamMemberSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [TeamMemberSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TeamMemberSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: TeamMemberWhereInput } input TeamMemberUpdateInput { status: TeamMemberStatus } input TeamMemberUpdateManyWithoutTeamInput { connect: [TeamMemberWhereUniqueInput!] disconnect: [TeamMemberWhereUniqueInput!] } input TeamMemberUpdateManyWithoutUserInput { connect: [TeamMemberWhereUniqueInput!] disconnect: [TeamMemberWhereUniqueInput!] } input TeamMemberUpdateWithoutTeamDataInput { status: TeamMemberStatus User: UserUpdateOneWithoutTeamsInput CreatedBy: UserUpdateOneInput } input TeamMemberUpdateWithoutUserDataInput { status: TeamMemberStatus Team: TeamUpdateOneWithoutMembersInput CreatedBy: UserUpdateOneInput } input TeamMemberUpdateWithWhereUniqueWithoutTeamInput { where: TeamMemberWhereUniqueInput! data: TeamMemberUpdateWithoutTeamDataInput! } input TeamMemberUpdateWithWhereUniqueWithoutUserInput { where: TeamMemberWhereUniqueInput! data: TeamMemberUpdateWithoutUserDataInput! } input TeamMemberUpsertWithWhereUniqueWithoutTeamInput { where: TeamMemberWhereUniqueInput! } input TeamMemberUpsertWithWhereUniqueWithoutUserInput { where: TeamMemberWhereUniqueInput! } input TeamMemberWhereInput { """Logical AND on all given filters.""" AND: [TeamMemberWhereInput!] """Logical OR on all given filters.""" OR: [TeamMemberWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TeamMemberWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID status: TeamMemberStatus """All values that are not equal to given value.""" status_not: TeamMemberStatus """All values that are contained in given list.""" status_in: [TeamMemberStatus!] """All values that are not contained in given list.""" status_not_in: [TeamMemberStatus!] Team: TeamWhereInput User: UserWhereInput CreatedBy: UserWhereInput } input TeamMemberWhereUniqueInput { id: ID } enum TeamOrderByInput { id_ASC id_DESC name_ASC name_DESC status_ASC status_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } type TeamPreviousValues { id: ID! name: String! status: TeamStatus! } type TeamResponse { success: Boolean! message: String errors: [Error!]! data: Team } enum TeamStatus { Active Inactive } type TeamSubscriptionPayload { mutation: MutationType! node: Team updatedFields: [String!] previousValues: TeamPreviousValues } input TeamSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [TeamSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [TeamSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TeamSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: TeamWhereInput } input TeamUpdateDataInput { name: String status: TeamStatus Parent: TeamUpdateOneWithoutChildsInput Childs: TeamUpdateManyWithoutParentInput CreatedBy: UserUpdateOneWithoutTeamsCreatedInput Members: TeamMemberUpdateManyWithoutTeamInput Projects: ProjectUpdateManyWithoutTeamInput OrderedProjects: ProjectUpdateManyWithoutCustomersInput } input TeamUpdateInput { name: String status: TeamStatus Parent: TeamUpdateOneWithoutChildsInput Childs: TeamUpdateManyWithoutParentInput Projects: ProjectUpdateManyWithoutTeamInput } input TeamUpdateManyInput { connect: [TeamWhereUniqueInput!] disconnect: [TeamWhereUniqueInput!] } input TeamUpdateManyWithoutCreatedByInput { connect: [TeamWhereUniqueInput!] disconnect: [TeamWhereUniqueInput!] } input TeamUpdateManyWithoutOrderedProjectsInput { connect: [TeamWhereUniqueInput!] disconnect: [TeamWhereUniqueInput!] } input TeamUpdateManyWithoutParentInput { connect: [TeamWhereUniqueInput!] disconnect: [TeamWhereUniqueInput!] } input TeamUpdateOneInput { connect: TeamWhereUniqueInput disconnect: Boolean } input TeamUpdateOneWithoutChildsInput { connect: TeamWhereUniqueInput disconnect: Boolean } input TeamUpdateOneWithoutMembersInput { connect: TeamWhereUniqueInput } input TeamUpdateOneWithoutProjectsInput { connect: TeamWhereUniqueInput disconnect: Boolean } input TeamUpdateWithoutChildsDataInput { name: String status: TeamStatus Parent: TeamUpdateOneWithoutChildsInput CreatedBy: UserUpdateOneWithoutTeamsCreatedInput Members: TeamMemberUpdateManyWithoutTeamInput Projects: ProjectUpdateManyWithoutTeamInput OrderedProjects: ProjectUpdateManyWithoutCustomersInput } input TeamUpdateWithoutCreatedByDataInput { name: String status: TeamStatus Parent: TeamUpdateOneWithoutChildsInput Childs: TeamUpdateManyWithoutParentInput Members: TeamMemberUpdateManyWithoutTeamInput Projects: ProjectUpdateManyWithoutTeamInput OrderedProjects: ProjectUpdateManyWithoutCustomersInput } input TeamUpdateWithoutMembersDataInput { name: String status: TeamStatus Parent: TeamUpdateOneWithoutChildsInput Childs: TeamUpdateManyWithoutParentInput CreatedBy: UserUpdateOneWithoutTeamsCreatedInput Projects: ProjectUpdateManyWithoutTeamInput OrderedProjects: ProjectUpdateManyWithoutCustomersInput } input TeamUpdateWithoutOrderedProjectsDataInput { name: String status: TeamStatus Parent: TeamUpdateOneWithoutChildsInput Childs: TeamUpdateManyWithoutParentInput CreatedBy: UserUpdateOneWithoutTeamsCreatedInput Members: TeamMemberUpdateManyWithoutTeamInput Projects: ProjectUpdateManyWithoutTeamInput } input TeamUpdateWithoutParentDataInput { name: String status: TeamStatus Childs: TeamUpdateManyWithoutParentInput CreatedBy: UserUpdateOneWithoutTeamsCreatedInput Members: TeamMemberUpdateManyWithoutTeamInput Projects: ProjectUpdateManyWithoutTeamInput OrderedProjects: ProjectUpdateManyWithoutCustomersInput } input TeamUpdateWithoutProjectsDataInput { name: String status: TeamStatus Parent: TeamUpdateOneWithoutChildsInput Childs: TeamUpdateManyWithoutParentInput CreatedBy: UserUpdateOneWithoutTeamsCreatedInput Members: TeamMemberUpdateManyWithoutTeamInput OrderedProjects: ProjectUpdateManyWithoutCustomersInput } input TeamUpdateWithWhereUniqueNestedInput { where: TeamWhereUniqueInput! data: TeamUpdateDataInput! } input TeamUpdateWithWhereUniqueWithoutCreatedByInput { where: TeamWhereUniqueInput! data: TeamUpdateWithoutCreatedByDataInput! } input TeamUpdateWithWhereUniqueWithoutOrderedProjectsInput { where: TeamWhereUniqueInput! data: TeamUpdateWithoutOrderedProjectsDataInput! } input TeamUpdateWithWhereUniqueWithoutParentInput { where: TeamWhereUniqueInput! data: TeamUpdateWithoutParentDataInput! } input TeamUpsertWithWhereUniqueNestedInput { where: TeamWhereUniqueInput! } input TeamUpsertWithWhereUniqueWithoutCreatedByInput { where: TeamWhereUniqueInput! } input TeamUpsertWithWhereUniqueWithoutOrderedProjectsInput { where: TeamWhereUniqueInput! } input TeamUpsertWithWhereUniqueWithoutParentInput { where: TeamWhereUniqueInput! } input TeamWhereInput { """Logical AND on all given filters.""" AND: [TeamWhereInput!] """Logical OR on all given filters.""" OR: [TeamWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TeamWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String status: TeamStatus """All values that are not equal to given value.""" status_not: TeamStatus """All values that are contained in given list.""" status_in: [TeamStatus!] """All values that are not contained in given list.""" status_not_in: [TeamStatus!] Parent: TeamWhereInput Childs_every: TeamWhereInput Childs_some: TeamWhereInput Childs_none: TeamWhereInput CreatedBy: UserWhereInput Members_every: TeamMemberWhereInput Members_some: TeamMemberWhereInput Members_none: TeamMemberWhereInput Projects_every: ProjectWhereInput Projects_some: ProjectWhereInput Projects_none: ProjectWhereInput OrderedProjects_every: ProjectWhereInput OrderedProjects_some: ProjectWhereInput OrderedProjects_none: ProjectWhereInput } input TeamWhereUniqueInput { id: ID } type Template implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! externalKey: ID name: String description: String component: String props: Json components: Json vars: Json rank: Int Parent(where: TemplateWhereInput): Template CreatedBy(where: UserWhereInput): User Project(where: ProjectWhereInput): Project PrismaProject(where: ProjectWhereInput): Project } """A connection to a list of items.""" type TemplateConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [TemplateEdge]! aggregate: AggregateTemplate! } input TemplateCreateInput { externalKey: ID name: String description: String component: String props: Json components: Json vars: Json rank: Int Parent: TemplateCreateOneInput CreatedBy: UserCreateOneInput Project: ProjectCreateOneInput PrismaProject: ProjectCreateOneWithoutPrismaTemplatesInput } input TemplateCreateManyWithoutPrismaProjectInput { connect: [TemplateWhereUniqueInput!] } input TemplateCreateOneInput { connect: TemplateWhereUniqueInput } input TemplateCreateWithoutPrismaProjectInput { externalKey: ID name: String description: String component: String props: Json components: Json vars: Json rank: Int Parent: TemplateCreateOneInput CreatedBy: UserCreateOneInput Project: ProjectCreateOneInput } """An edge in a connection.""" type TemplateEdge { """The item at the end of the edge.""" node: Template! """A cursor for use in pagination.""" cursor: String! } enum TemplateOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC externalKey_ASC externalKey_DESC name_ASC name_DESC description_ASC description_DESC component_ASC component_DESC props_ASC props_DESC components_ASC components_DESC vars_ASC vars_DESC rank_ASC rank_DESC } type TemplatePreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! externalKey: ID name: String description: String component: String props: Json components: Json vars: Json rank: Int } type TemplateResponse { success: Boolean! message: String errors: [Error!]! data: Template } type TemplateSubscriptionPayload { mutation: MutationType! node: Template updatedFields: [String!] previousValues: TemplatePreviousValues } input TemplateSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [TemplateSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [TemplateSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TemplateSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: TemplateWhereInput } input TemplateUpdateDataInput { externalKey: ID name: String description: String component: String props: Json components: Json vars: Json rank: Int Parent: TemplateUpdateOneInput CreatedBy: UserUpdateOneInput Project: ProjectUpdateOneInput PrismaProject: ProjectUpdateOneWithoutPrismaTemplatesInput } input TemplateUpdateInput { externalKey: ID name: String description: String component: String props: Json components: Json vars: Json rank: Int Parent: TemplateUpdateOneInput CreatedBy: UserUpdateOneInput Project: ProjectUpdateOneInput PrismaProject: ProjectUpdateOneWithoutPrismaTemplatesInput } input TemplateUpdateManyWithoutPrismaProjectInput { connect: [TemplateWhereUniqueInput!] disconnect: [TemplateWhereUniqueInput!] } input TemplateUpdateOneInput { connect: TemplateWhereUniqueInput disconnect: Boolean } input TemplateUpdateWithoutPrismaProjectDataInput { externalKey: ID name: String description: String component: String props: Json components: Json vars: Json rank: Int Parent: TemplateUpdateOneInput CreatedBy: UserUpdateOneInput Project: ProjectUpdateOneInput } input TemplateUpdateWithWhereUniqueWithoutPrismaProjectInput { where: TemplateWhereUniqueInput! data: TemplateUpdateWithoutPrismaProjectDataInput! } input TemplateUpsertWithWhereUniqueWithoutPrismaProjectInput { where: TemplateWhereUniqueInput! } input TemplateWhereInput { """Logical AND on all given filters.""" AND: [TemplateWhereInput!] """Logical OR on all given filters.""" OR: [TemplateWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TemplateWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime externalKey: ID """All values that are not equal to given value.""" externalKey_not: ID """All values that are contained in given list.""" externalKey_in: [ID!] """All values that are not contained in given list.""" externalKey_not_in: [ID!] """All values less than the given value.""" externalKey_lt: ID """All values less than or equal the given value.""" externalKey_lte: ID """All values greater than the given value.""" externalKey_gt: ID """All values greater than or equal the given value.""" externalKey_gte: ID """All values containing the given string.""" externalKey_contains: ID """All values not containing the given string.""" externalKey_not_contains: ID """All values starting with the given string.""" externalKey_starts_with: ID """All values not starting with the given string.""" externalKey_not_starts_with: ID """All values ending with the given string.""" externalKey_ends_with: ID """All values not ending with the given string.""" externalKey_not_ends_with: ID name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String description: String """All values that are not equal to given value.""" description_not: String """All values that are contained in given list.""" description_in: [String!] """All values that are not contained in given list.""" description_not_in: [String!] """All values less than the given value.""" description_lt: String """All values less than or equal the given value.""" description_lte: String """All values greater than the given value.""" description_gt: String """All values greater than or equal the given value.""" description_gte: String """All values containing the given string.""" description_contains: String """All values not containing the given string.""" description_not_contains: String """All values starting with the given string.""" description_starts_with: String """All values not starting with the given string.""" description_not_starts_with: String """All values ending with the given string.""" description_ends_with: String """All values not ending with the given string.""" description_not_ends_with: String component: String """All values that are not equal to given value.""" component_not: String """All values that are contained in given list.""" component_in: [String!] """All values that are not contained in given list.""" component_not_in: [String!] """All values less than the given value.""" component_lt: String """All values less than or equal the given value.""" component_lte: String """All values greater than the given value.""" component_gt: String """All values greater than or equal the given value.""" component_gte: String """All values containing the given string.""" component_contains: String """All values not containing the given string.""" component_not_contains: String """All values starting with the given string.""" component_starts_with: String """All values not starting with the given string.""" component_not_starts_with: String """All values ending with the given string.""" component_ends_with: String """All values not ending with the given string.""" component_not_ends_with: String rank: Int """All values that are not equal to given value.""" rank_not: Int """All values that are contained in given list.""" rank_in: [Int!] """All values that are not contained in given list.""" rank_not_in: [Int!] """All values less than the given value.""" rank_lt: Int """All values less than or equal the given value.""" rank_lte: Int """All values greater than the given value.""" rank_gt: Int """All values greater than or equal the given value.""" rank_gte: Int Parent: TemplateWhereInput CreatedBy: UserWhereInput Project: ProjectWhereInput PrismaProject: ProjectWhereInput } input TemplateWhereUniqueInput { id: ID } type Timer implements Node { id: ID! createdAt: DateTime! stopedAt: DateTime CreatedBy(where: UserWhereInput): User! Task(where: TaskWhereInput): Task! } """A connection to a list of items.""" type TimerConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [TimerEdge]! aggregate: AggregateTimer! } input TimerCreateInput { stopedAt: DateTime Task: TaskCreateOneWithoutTimersInput! } input TimerCreateManyWithoutCreatedByInput { connect: [TimerWhereUniqueInput!] } input TimerCreateManyWithoutTaskInput { connect: [TimerWhereUniqueInput!] } input TimerCreateWithoutCreatedByInput { stopedAt: DateTime Task: TaskCreateOneWithoutTimersInput! } input TimerCreateWithoutTaskInput { stopedAt: DateTime CreatedBy: UserCreateOneWithoutTimersInput! } """An edge in a connection.""" type TimerEdge { """The item at the end of the edge.""" node: Timer! """A cursor for use in pagination.""" cursor: String! } enum TimerOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC stopedAt_ASC stopedAt_DESC updatedAt_ASC updatedAt_DESC } type TimerPreviousValues { id: ID! createdAt: DateTime! stopedAt: DateTime } type TimerResponse { success: Boolean! message: String errors: [Error!]! data: Timer } type TimerSubscriptionPayload { mutation: MutationType! node: Timer updatedFields: [String!] previousValues: TimerPreviousValues } input TimerSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [TimerSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [TimerSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TimerSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: TimerWhereInput } input TimerUpdateInput { stopedAt: DateTime } input TimerUpdateManyWithoutCreatedByInput { connect: [TimerWhereUniqueInput!] disconnect: [TimerWhereUniqueInput!] } input TimerUpdateManyWithoutTaskInput { connect: [TimerWhereUniqueInput!] disconnect: [TimerWhereUniqueInput!] } input TimerUpdateWithoutCreatedByDataInput { stopedAt: DateTime Task: TaskUpdateOneWithoutTimersInput } input TimerUpdateWithoutTaskDataInput { stopedAt: DateTime CreatedBy: UserUpdateOneWithoutTimersInput } input TimerUpdateWithWhereUniqueWithoutCreatedByInput { where: TimerWhereUniqueInput! data: TimerUpdateWithoutCreatedByDataInput! } input TimerUpdateWithWhereUniqueWithoutTaskInput { where: TimerWhereUniqueInput! data: TimerUpdateWithoutTaskDataInput! } input TimerUpsertWithWhereUniqueWithoutCreatedByInput { where: TimerWhereUniqueInput! } input TimerUpsertWithWhereUniqueWithoutTaskInput { where: TimerWhereUniqueInput! } input TimerWhereInput { """Logical AND on all given filters.""" AND: [TimerWhereInput!] """Logical OR on all given filters.""" OR: [TimerWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TimerWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime stopedAt: DateTime """All values that are not equal to given value.""" stopedAt_not: DateTime """All values that are contained in given list.""" stopedAt_in: [DateTime!] """All values that are not contained in given list.""" stopedAt_not_in: [DateTime!] """All values less than the given value.""" stopedAt_lt: DateTime """All values less than or equal the given value.""" stopedAt_lte: DateTime """All values greater than the given value.""" stopedAt_gt: DateTime """All values greater than or equal the given value.""" stopedAt_gte: DateTime CreatedBy: UserWhereInput Task: TaskWhereInput } input TimerWhereUniqueInput { id: ID } type Tournament implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! name: String code: ID CreatedBy(where: UserWhereInput): User Tourneys(where: TourneyWhereInput, orderBy: TourneyOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Tourney!] Group(where: TournamentGroupWhereInput): TournamentGroup } """A connection to a list of items.""" type TournamentConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [TournamentEdge]! aggregate: AggregateTournament! } input TournamentCreateInput { name: String code: ID CreatedBy: UserCreateOneInput Tourneys: TourneyCreateManyWithoutTournamentInput Group: TournamentGroupCreateOneWithoutTournamentsInput } input TournamentCreateManyWithoutGroupInput { connect: [TournamentWhereUniqueInput!] } input TournamentCreateOneWithoutTourneysInput { connect: TournamentWhereUniqueInput } input TournamentCreateWithoutGroupInput { name: String code: ID CreatedBy: UserCreateOneInput Tourneys: TourneyCreateManyWithoutTournamentInput } input TournamentCreateWithoutTourneysInput { name: String code: ID CreatedBy: UserCreateOneInput Group: TournamentGroupCreateOneWithoutTournamentsInput } """An edge in a connection.""" type TournamentEdge { """The item at the end of the edge.""" node: Tournament! """A cursor for use in pagination.""" cursor: String! } type TournamentGroup implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! name: String code: ID CreatedBy(where: UserWhereInput): User Tournaments(where: TournamentWhereInput, orderBy: TournamentOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Tournament!] } """A connection to a list of items.""" type TournamentGroupConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [TournamentGroupEdge]! aggregate: AggregateTournamentGroup! } input TournamentGroupCreateInput { name: String code: ID CreatedBy: UserCreateOneInput Tournaments: TournamentCreateManyWithoutGroupInput } input TournamentGroupCreateOneWithoutTournamentsInput { connect: TournamentGroupWhereUniqueInput } input TournamentGroupCreateWithoutTournamentsInput { name: String code: ID CreatedBy: UserCreateOneInput } """An edge in a connection.""" type TournamentGroupEdge { """The item at the end of the edge.""" node: TournamentGroup! """A cursor for use in pagination.""" cursor: String! } enum TournamentGroupOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC name_ASC name_DESC code_ASC code_DESC } type TournamentGroupPreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! name: String code: ID } type TournamentGroupResponse { success: Boolean! message: String! errors: [Error!]! data: TournamentGroup } type TournamentGroupSubscriptionPayload { mutation: MutationType! node: TournamentGroup updatedFields: [String!] previousValues: TournamentGroupPreviousValues } input TournamentGroupSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [TournamentGroupSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [TournamentGroupSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TournamentGroupSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: TournamentGroupWhereInput } input TournamentGroupUpdateInput { name: String code: ID CreatedBy: UserUpdateOneInput Tournaments: TournamentUpdateManyWithoutGroupInput } input TournamentGroupUpdateOneWithoutTournamentsInput { connect: TournamentGroupWhereUniqueInput disconnect: Boolean } input TournamentGroupUpdateWithoutTournamentsDataInput { name: String code: ID CreatedBy: UserUpdateOneInput } input TournamentGroupWhereInput { """Logical AND on all given filters.""" AND: [TournamentGroupWhereInput!] """Logical OR on all given filters.""" OR: [TournamentGroupWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TournamentGroupWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String code: ID """All values that are not equal to given value.""" code_not: ID """All values that are contained in given list.""" code_in: [ID!] """All values that are not contained in given list.""" code_not_in: [ID!] """All values less than the given value.""" code_lt: ID """All values less than or equal the given value.""" code_lte: ID """All values greater than the given value.""" code_gt: ID """All values greater than or equal the given value.""" code_gte: ID """All values containing the given string.""" code_contains: ID """All values not containing the given string.""" code_not_contains: ID """All values starting with the given string.""" code_starts_with: ID """All values not starting with the given string.""" code_not_starts_with: ID """All values ending with the given string.""" code_ends_with: ID """All values not ending with the given string.""" code_not_ends_with: ID CreatedBy: UserWhereInput Tournaments_every: TournamentWhereInput Tournaments_some: TournamentWhereInput Tournaments_none: TournamentWhereInput } input TournamentGroupWhereUniqueInput { id: ID code: ID } enum TournamentOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC name_ASC name_DESC code_ASC code_DESC } type TournamentPreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! name: String code: ID } type TournamentResponse { success: Boolean! message: String! errors: [Error!]! data: Tournament } type TournamentSubscriptionPayload { mutation: MutationType! node: Tournament updatedFields: [String!] previousValues: TournamentPreviousValues } input TournamentSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [TournamentSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [TournamentSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TournamentSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: TournamentWhereInput } input TournamentUpdateInput { name: String code: ID CreatedBy: UserUpdateOneInput Tourneys: TourneyUpdateManyWithoutTournamentInput Group: TournamentGroupUpdateOneWithoutTournamentsInput } input TournamentUpdateManyWithoutGroupInput { connect: [TournamentWhereUniqueInput!] disconnect: [TournamentWhereUniqueInput!] } input TournamentUpdateOneWithoutTourneysInput { connect: TournamentWhereUniqueInput disconnect: Boolean } input TournamentUpdateWithoutGroupDataInput { name: String code: ID CreatedBy: UserUpdateOneInput Tourneys: TourneyUpdateManyWithoutTournamentInput } input TournamentUpdateWithoutTourneysDataInput { name: String code: ID CreatedBy: UserUpdateOneInput Group: TournamentGroupUpdateOneWithoutTournamentsInput } input TournamentUpdateWithWhereUniqueWithoutGroupInput { where: TournamentWhereUniqueInput! data: TournamentUpdateWithoutGroupDataInput! } input TournamentUpsertWithWhereUniqueWithoutGroupInput { where: TournamentWhereUniqueInput! } input TournamentWhereInput { """Logical AND on all given filters.""" AND: [TournamentWhereInput!] """Logical OR on all given filters.""" OR: [TournamentWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TournamentWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String code: ID """All values that are not equal to given value.""" code_not: ID """All values that are contained in given list.""" code_in: [ID!] """All values that are not contained in given list.""" code_not_in: [ID!] """All values less than the given value.""" code_lt: ID """All values less than or equal the given value.""" code_lte: ID """All values greater than the given value.""" code_gt: ID """All values greater than or equal the given value.""" code_gte: ID """All values containing the given string.""" code_contains: ID """All values not containing the given string.""" code_not_contains: ID """All values starting with the given string.""" code_starts_with: ID """All values not starting with the given string.""" code_not_starts_with: ID """All values ending with the given string.""" code_ends_with: ID """All values not ending with the given string.""" code_not_ends_with: ID CreatedBy: UserWhereInput Tourneys_every: TourneyWhereInput Tourneys_some: TourneyWhereInput Tourneys_none: TourneyWhereInput Group: TournamentGroupWhereInput } input TournamentWhereUniqueInput { id: ID code: ID } type Tourney implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! name: String code: ID date: DateTime CreatedBy(where: UserWhereInput): User Tournament(where: TournamentWhereInput): Tournament Users(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User!] Games(where: GameWhereInput, orderBy: GameOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Game!] } """A connection to a list of items.""" type TourneyConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [TourneyEdge]! aggregate: AggregateTourney! } input TourneyCreateInput { name: String code: ID date: DateTime CreatedBy: UserCreateOneInput Tournament: TournamentCreateOneWithoutTourneysInput Users: UserCreateManyInput Games: GameCreateManyWithoutTourneyInput } input TourneyCreateManyWithoutTournamentInput { connect: [TourneyWhereUniqueInput!] } input TourneyCreateOneWithoutGamesInput { connect: TourneyWhereUniqueInput } input TourneyCreateWithoutGamesInput { name: String code: ID date: DateTime CreatedBy: UserCreateOneInput Tournament: TournamentCreateOneWithoutTourneysInput Users: UserCreateManyInput } input TourneyCreateWithoutTournamentInput { name: String code: ID date: DateTime CreatedBy: UserCreateOneInput Users: UserCreateManyInput Games: GameCreateManyWithoutTourneyInput } """An edge in a connection.""" type TourneyEdge { """The item at the end of the edge.""" node: Tourney! """A cursor for use in pagination.""" cursor: String! } enum TourneyOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC name_ASC name_DESC code_ASC code_DESC date_ASC date_DESC } type TourneyPreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! name: String code: ID date: DateTime } type TourneyResponse { success: Boolean! message: String! errors: [Error!]! data: Tourney } type TourneySubscriptionPayload { mutation: MutationType! node: Tourney updatedFields: [String!] previousValues: TourneyPreviousValues } input TourneySubscriptionWhereInput { """Logical AND on all given filters.""" AND: [TourneySubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [TourneySubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TourneySubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: TourneyWhereInput } input TourneyUpdateInput { name: String code: ID date: DateTime CreatedBy: UserUpdateOneInput Tournament: TournamentUpdateOneWithoutTourneysInput Users: UserUpdateManyInput Games: GameUpdateManyWithoutTourneyInput } input TourneyUpdateManyWithoutTournamentInput { connect: [TourneyWhereUniqueInput!] disconnect: [TourneyWhereUniqueInput!] } input TourneyUpdateOneWithoutGamesInput { connect: TourneyWhereUniqueInput disconnect: Boolean } input TourneyUpdateWithoutGamesDataInput { name: String code: ID date: DateTime CreatedBy: UserUpdateOneInput Tournament: TournamentUpdateOneWithoutTourneysInput Users: UserUpdateManyInput } input TourneyUpdateWithoutTournamentDataInput { name: String code: ID date: DateTime CreatedBy: UserUpdateOneInput Users: UserUpdateManyInput Games: GameUpdateManyWithoutTourneyInput } input TourneyUpdateWithWhereUniqueWithoutTournamentInput { where: TourneyWhereUniqueInput! data: TourneyUpdateWithoutTournamentDataInput! } input TourneyUpsertWithWhereUniqueWithoutTournamentInput { where: TourneyWhereUniqueInput! } input TourneyWhereInput { """Logical AND on all given filters.""" AND: [TourneyWhereInput!] """Logical OR on all given filters.""" OR: [TourneyWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [TourneyWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String code: ID """All values that are not equal to given value.""" code_not: ID """All values that are contained in given list.""" code_in: [ID!] """All values that are not contained in given list.""" code_not_in: [ID!] """All values less than the given value.""" code_lt: ID """All values less than or equal the given value.""" code_lte: ID """All values greater than the given value.""" code_gt: ID """All values greater than or equal the given value.""" code_gte: ID """All values containing the given string.""" code_contains: ID """All values not containing the given string.""" code_not_contains: ID """All values starting with the given string.""" code_starts_with: ID """All values not starting with the given string.""" code_not_starts_with: ID """All values ending with the given string.""" code_ends_with: ID """All values not ending with the given string.""" code_not_ends_with: ID date: DateTime """All values that are not equal to given value.""" date_not: DateTime """All values that are contained in given list.""" date_in: [DateTime!] """All values that are not contained in given list.""" date_not_in: [DateTime!] """All values less than the given value.""" date_lt: DateTime """All values less than or equal the given value.""" date_lte: DateTime """All values greater than the given value.""" date_gt: DateTime """All values greater than or equal the given value.""" date_gte: DateTime CreatedBy: UserWhereInput Tournament: TournamentWhereInput Users_every: UserWhereInput Users_some: UserWhereInput Users_none: UserWhereInput Games_every: GameWhereInput Games_some: GameWhereInput Games_none: GameWhereInput } input TourneyWhereUniqueInput { id: ID code: ID } """The `Upload` scalar type represents a file upload.""" scalar Upload type User implements Node { marketplaceToken: String id: ID! createdAt: DateTime! updatedAt: DateTime! username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean Groups(where: UserGroupWhereInput, orderBy: UserGroupOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [UserGroup!] CreatedUsers(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User!] CreatedBy(where: UserWhereInput): User LogedIns(where: LogedInWhereInput, orderBy: LogedInOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [LogedIn!] Files(where: FileWhereInput, orderBy: FileOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [File!] hidden: Boolean Resources(where: ResourceWhereInput, orderBy: ResourceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Resource!] Rooms(where: ChatRoomWhereInput, orderBy: ChatRoomOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ChatRoom!] CreatedRooms(where: ChatRoomWhereInput, orderBy: ChatRoomOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ChatRoom!] Messages(where: ChatMessageWhereInput, orderBy: ChatMessageOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ChatMessage!] ReadedMessages(where: ChatMessageReadedWhereInput, orderBy: ChatMessageReadedOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ChatMessageReaded!] Notices(where: NoticeWhereInput, orderBy: NoticeOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Notice!] Votes(where: VoteWhereInput, orderBy: VoteOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Vote!] NotificationTypes(where: NotificationTypeWhereInput, orderBy: NotificationTypeOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [NotificationType!] NotificationTypesCreated(where: NotificationTypeWhereInput, orderBy: NotificationTypeOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [NotificationType!] Tags(where: TagWhereInput, orderBy: TagOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Tag!] ResourceTags(where: ResourceTagWhereInput, orderBy: ResourceTagOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ResourceTag!] Teams(where: TeamMemberWhereInput, orderBy: TeamMemberOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [TeamMember!] TeamsCreated(where: TeamWhereInput, orderBy: TeamOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Team!] Projects(where: ProjectMemberWhereInput, orderBy: ProjectMemberOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ProjectMember!] ProjectsCreated(where: ProjectWhereInput, orderBy: ProjectOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Project!] Tasks(where: TaskMemberWhereInput, orderBy: TaskMemberOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [TaskMember!] Timers(where: TimerWhereInput, orderBy: TimerOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Timer!] PositionsCreated(where: PositionWhereInput, orderBy: PositionOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Position!] Positions(where: PositionWhereInput, orderBy: PositionOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Position!] TasksReactions(where: TaskReactionWhereInput, orderBy: TaskReactionOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [TaskReaction!] CustomerChats(where: ChatRoomWhereInput, orderBy: ChatRoomOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ChatRoom!] secondID: ID exported: Boolean sudo: Boolean ModxUser(where: ModxUserWhereInput): ModxUser auctions: String lots: String prices: String looked: String preferences: String info: String Orders(where: OrderWhereInput, orderBy: OrderOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Order!] ServiceOrders(where: ServiceOrderWhereInput, orderBy: ServiceOrderOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ServiceOrder!] Changes(where: ChangeWhereInput, orderBy: ChangeOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Change!] ChatRooms(where: ChatRoomWhereInput, orderBy: ChatRoomOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ChatRoom!] requestJoin: Boolean DiscountGroup(where: DiscountGroupWhereInput): DiscountGroup hasEmail: Boolean! hasPhone: Boolean! } """A connection to a list of items.""" type UserConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [UserEdge]! aggregate: AggregateUser! } input UserCreateInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateManyInput { connect: [UserWhereUniqueInput!] } input UserCreateManyWithoutChatRoomsInput { connect: [UserWhereUniqueInput!] } input UserCreateManyWithoutCreatedByInput { connect: [UserWhereUniqueInput!] } input UserCreateManyWithoutDiscountGroupInput { connect: [UserWhereUniqueInput!] } input UserCreateManyWithoutGroupsInput { connect: [UserWhereUniqueInput!] } input UserCreateManyWithoutNotificationTypesInput { connect: [UserWhereUniqueInput!] } input UserCreateManyWithoutPositionsInput { connect: [UserWhereUniqueInput!] } input UserCreateManyWithoutRoomsInput { connect: [UserWhereUniqueInput!] } input UserCreateOneInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutChangesInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutCreatedRoomsInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutCreatedUsersInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutCustomerChatsInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutFilesInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutLogedInsInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutModxUserInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutNoticesInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutNotificationTypesCreatedInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutOrdersInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutPositionsCreatedInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutProjectsCreatedInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutProjectsInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutResourcesInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutResourceTagsInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutServiceOrdersInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutTagsInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutTasksInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutTasksReactionsInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutTeamsCreatedInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutTeamsInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutTimersInput { connect: UserWhereUniqueInput } input UserCreateOneWithoutVotesInput { connect: UserWhereUniqueInput } input UserCreateWithoutChangesInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutChatRoomsInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutCreatedByInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutCreatedRoomsInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutCreatedUsersInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutCustomerChatsInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutDiscountGroupInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput } input UserCreateWithoutFilesInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutGroupsInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutLogedInsInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutModxUserInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutNoticesInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutNotificationTypesCreatedInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutNotificationTypesInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutOrdersInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutPositionsCreatedInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutPositionsInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutProjectsCreatedInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutProjectsInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutResourcesInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutResourceTagsInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutServiceOrdersInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutTagsInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutTasksInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutTasksReactionsInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutTeamsCreatedInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutTeamsInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutTimersInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput Votes: VoteCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } input UserCreateWithoutVotesInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupCreateManyWithoutUsersInput CreatedUsers: UserCreateManyWithoutCreatedByInput CreatedBy: UserCreateOneWithoutCreatedUsersInput LogedIns: LogedInCreateManyWithoutUserInput Files: FileCreateManyWithoutCreatedByInput Resources: ResourceCreateManyWithoutCreatedByInput Rooms: ChatRoomCreateManyInput CreatedRooms: ChatRoomCreateManyWithoutCreatedByInput Messages: ChatMessageCreateManyInput ReadedMessages: ChatMessageReadedCreateManyInput Notices: NoticeCreateManyWithoutUserInput NotificationTypes: NotificationTypeCreateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeCreateManyWithoutCreatedByInput Tags: TagCreateManyWithoutCreatedByInput ResourceTags: ResourceTagCreateManyWithoutCreatedByInput Teams: TeamMemberCreateManyWithoutUserInput TeamsCreated: TeamCreateManyWithoutCreatedByInput Projects: ProjectMemberCreateManyWithoutUserInput ProjectsCreated: ProjectCreateManyWithoutCreatedByInput Tasks: TaskMemberCreateManyWithoutUserInput Timers: TimerCreateManyWithoutCreatedByInput PositionsCreated: PositionCreateManyWithoutCreatedByInput Positions: PositionCreateManyWithoutUsersInput TasksReactions: TaskReactionCreateManyWithoutCreatedByInput CustomerChats: ChatRoomCreateManyWithoutCustomerInput ModxUser: ModxUserCreateOneWithoutUserInput Orders: OrderCreateManyWithoutUserInput ServiceOrders: ServiceOrderCreateManyWithoutUserInput Changes: ChangeCreateManyWithoutUserInput ChatRooms: ChatRoomCreateManyWithoutMembersInput DiscountGroup: DiscountGroupCreateOneWithoutUsersInput } """An edge in a connection.""" type UserEdge { """The item at the end of the edge.""" node: User! """A cursor for use in pagination.""" cursor: String! } type UserGroup implements Node { id: ID! name: String! Users(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User!] } """A connection to a list of items.""" type UserGroupConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [UserGroupEdge]! aggregate: AggregateUserGroup! } input UserGroupCreateInput { name: String! } input UserGroupCreateManyWithoutUsersInput { connect: [UserGroupWhereUniqueInput!] } input UserGroupCreateWithoutUsersInput { name: String! } """An edge in a connection.""" type UserGroupEdge { """The item at the end of the edge.""" node: UserGroup! """A cursor for use in pagination.""" cursor: String! } enum UserGroupOrderByInput { id_ASC id_DESC name_ASC name_DESC updatedAt_ASC updatedAt_DESC createdAt_ASC createdAt_DESC } type UserGroupPreviousValues { id: ID! name: String! } type UserGroupSubscriptionPayload { mutation: MutationType! node: UserGroup updatedFields: [String!] previousValues: UserGroupPreviousValues } input UserGroupSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [UserGroupSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [UserGroupSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [UserGroupSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: UserGroupWhereInput } input UserGroupUpdateInput { name: String } input UserGroupUpdateManyWithoutUsersInput { connect: [UserGroupWhereUniqueInput!] disconnect: [UserGroupWhereUniqueInput!] } input UserGroupUpdateWithoutUsersDataInput { name: String } input UserGroupUpdateWithWhereUniqueWithoutUsersInput { where: UserGroupWhereUniqueInput! data: UserGroupUpdateWithoutUsersDataInput! } input UserGroupUpsertWithWhereUniqueWithoutUsersInput { where: UserGroupWhereUniqueInput! } input UserGroupWhereInput { """Logical AND on all given filters.""" AND: [UserGroupWhereInput!] """Logical OR on all given filters.""" OR: [UserGroupWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [UserGroupWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID name: String """All values that are not equal to given value.""" name_not: String """All values that are contained in given list.""" name_in: [String!] """All values that are not contained in given list.""" name_not_in: [String!] """All values less than the given value.""" name_lt: String """All values less than or equal the given value.""" name_lte: String """All values greater than the given value.""" name_gt: String """All values greater than or equal the given value.""" name_gte: String """All values containing the given string.""" name_contains: String """All values not containing the given string.""" name_not_contains: String """All values starting with the given string.""" name_starts_with: String """All values not starting with the given string.""" name_not_starts_with: String """All values ending with the given string.""" name_ends_with: String """All values not ending with the given string.""" name_not_ends_with: String Users_every: UserWhereInput Users_some: UserWhereInput Users_none: UserWhereInput } input UserGroupWhereUniqueInput { id: ID name: String } enum UserOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC username_ASC username_DESC email_ASC email_DESC phone_ASC phone_DESC showEmail_ASC showEmail_DESC showPhone_ASC showPhone_DESC password_ASC password_DESC fullname_ASC fullname_DESC image_ASC image_DESC address_ASC address_DESC active_ASC active_DESC activated_ASC activated_DESC deleted_ASC deleted_DESC hidden_ASC hidden_DESC marketplaceToken_ASC marketplaceToken_DESC secondID_ASC secondID_DESC exported_ASC exported_DESC sudo_ASC sudo_DESC auctions_ASC auctions_DESC lots_ASC lots_DESC prices_ASC prices_DESC looked_ASC looked_DESC preferences_ASC preferences_DESC info_ASC info_DESC requestJoin_ASC requestJoin_DESC } type UserPreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean } type UserResponse { success: Boolean! message: String errors: [Error!]! data: User } type UserSubscriptionPayload { mutation: MutationType! node: User updatedFields: [String!] previousValues: UserPreviousValues } input UserSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [UserSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [UserSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [UserSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: UserWhereInput } input UserUpdateDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateInput { discountGroup: ID username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateManyInput { connect: [UserWhereUniqueInput!] disconnect: [UserWhereUniqueInput!] } input UserUpdateManyWithoutChatRoomsInput { connect: [UserWhereUniqueInput!] disconnect: [UserWhereUniqueInput!] } input UserUpdateManyWithoutCreatedByInput { connect: [UserWhereUniqueInput!] disconnect: [UserWhereUniqueInput!] } input UserUpdateManyWithoutDiscountGroupInput { connect: [UserWhereUniqueInput!] disconnect: [UserWhereUniqueInput!] } input UserUpdateManyWithoutGroupsInput { connect: [UserWhereUniqueInput!] disconnect: [UserWhereUniqueInput!] } input UserUpdateManyWithoutNotificationTypesInput { connect: [UserWhereUniqueInput!] disconnect: [UserWhereUniqueInput!] } input UserUpdateManyWithoutPositionsInput { connect: [UserWhereUniqueInput!] disconnect: [UserWhereUniqueInput!] } input UserUpdateManyWithoutRoomsInput { connect: [UserWhereUniqueInput!] disconnect: [UserWhereUniqueInput!] } input UserUpdateOneInput { connect: UserWhereUniqueInput disconnect: Boolean } input UserUpdateOneWithoutChangesInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutCreatedRoomsInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutCreatedUsersInput { connect: UserWhereUniqueInput disconnect: Boolean } input UserUpdateOneWithoutCustomerChatsInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutFilesInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutLogedInsInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutModxUserInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutNoticesInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutNotificationTypesCreatedInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutOrdersInput { connect: UserWhereUniqueInput disconnect: Boolean } input UserUpdateOneWithoutPositionsCreatedInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutProjectsCreatedInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutProjectsInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutResourcesInput { connect: UserWhereUniqueInput disconnect: Boolean } input UserUpdateOneWithoutResourceTagsInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutServiceOrdersInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutTagsInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutTasksInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutTasksReactionsInput { connect: UserWhereUniqueInput disconnect: Boolean } input UserUpdateOneWithoutTeamsCreatedInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutTeamsInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutTimersInput { connect: UserWhereUniqueInput } input UserUpdateOneWithoutVotesInput { connect: UserWhereUniqueInput } input UserUpdateWithoutChangesDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutChatRoomsDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutCreatedByDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutCreatedRoomsDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutCreatedUsersDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutCustomerChatsDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutDiscountGroupDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput } input UserUpdateWithoutFilesDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutGroupsDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutLogedInsDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutModxUserDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutNoticesDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutNotificationTypesCreatedDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutNotificationTypesDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutOrdersDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutPositionsCreatedDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutPositionsDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutProjectsCreatedDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutProjectsDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutResourcesDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutResourceTagsDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutServiceOrdersDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutTagsDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutTasksDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutTasksReactionsDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutTeamsCreatedDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutTeamsDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutTimersDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput Votes: VoteUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithoutVotesDataInput { username: String email: String phone: String showEmail: Boolean showPhone: Boolean password: String fullname: String image: String address: String active: Boolean activated: Boolean deleted: Boolean hidden: Boolean marketplaceToken: String secondID: ID exported: Boolean sudo: Boolean auctions: String lots: String prices: String looked: String preferences: String info: String requestJoin: Boolean Groups: UserGroupUpdateManyWithoutUsersInput CreatedUsers: UserUpdateManyWithoutCreatedByInput CreatedBy: UserUpdateOneWithoutCreatedUsersInput LogedIns: LogedInUpdateManyWithoutUserInput Files: FileUpdateManyWithoutCreatedByInput Resources: ResourceUpdateManyWithoutCreatedByInput Rooms: ChatRoomUpdateManyInput CreatedRooms: ChatRoomUpdateManyWithoutCreatedByInput Messages: ChatMessageUpdateManyInput ReadedMessages: ChatMessageReadedUpdateManyInput Notices: NoticeUpdateManyWithoutUserInput NotificationTypes: NotificationTypeUpdateManyWithoutUsersInput NotificationTypesCreated: NotificationTypeUpdateManyWithoutCreatedByInput Tags: TagUpdateManyWithoutCreatedByInput ResourceTags: ResourceTagUpdateManyWithoutCreatedByInput Teams: TeamMemberUpdateManyWithoutUserInput TeamsCreated: TeamUpdateManyWithoutCreatedByInput Projects: ProjectMemberUpdateManyWithoutUserInput ProjectsCreated: ProjectUpdateManyWithoutCreatedByInput Tasks: TaskMemberUpdateManyWithoutUserInput Timers: TimerUpdateManyWithoutCreatedByInput PositionsCreated: PositionUpdateManyWithoutCreatedByInput Positions: PositionUpdateManyWithoutUsersInput TasksReactions: TaskReactionUpdateManyWithoutCreatedByInput CustomerChats: ChatRoomUpdateManyWithoutCustomerInput ModxUser: ModxUserUpdateOneWithoutUserInput Orders: OrderUpdateManyWithoutUserInput ServiceOrders: ServiceOrderUpdateManyWithoutUserInput Changes: ChangeUpdateManyWithoutUserInput ChatRooms: ChatRoomUpdateManyWithoutMembersInput DiscountGroup: DiscountGroupUpdateOneWithoutUsersInput } input UserUpdateWithWhereUniqueNestedInput { where: UserWhereUniqueInput! data: UserUpdateDataInput! } input UserUpdateWithWhereUniqueWithoutChatRoomsInput { where: UserWhereUniqueInput! data: UserUpdateWithoutChatRoomsDataInput! } input UserUpdateWithWhereUniqueWithoutCreatedByInput { where: UserWhereUniqueInput! data: UserUpdateWithoutCreatedByDataInput! } input UserUpdateWithWhereUniqueWithoutDiscountGroupInput { where: UserWhereUniqueInput! data: UserUpdateWithoutDiscountGroupDataInput! } input UserUpdateWithWhereUniqueWithoutGroupsInput { where: UserWhereUniqueInput! data: UserUpdateWithoutGroupsDataInput! } input UserUpdateWithWhereUniqueWithoutNotificationTypesInput { where: UserWhereUniqueInput! data: UserUpdateWithoutNotificationTypesDataInput! } input UserUpdateWithWhereUniqueWithoutPositionsInput { where: UserWhereUniqueInput! data: UserUpdateWithoutPositionsDataInput! } input UserUpsertWithWhereUniqueNestedInput { where: UserWhereUniqueInput! } input UserUpsertWithWhereUniqueWithoutChatRoomsInput { where: UserWhereUniqueInput! } input UserUpsertWithWhereUniqueWithoutCreatedByInput { where: UserWhereUniqueInput! } input UserUpsertWithWhereUniqueWithoutDiscountGroupInput { where: UserWhereUniqueInput! } input UserUpsertWithWhereUniqueWithoutGroupsInput { where: UserWhereUniqueInput! } input UserUpsertWithWhereUniqueWithoutNotificationTypesInput { where: UserWhereUniqueInput! } input UserUpsertWithWhereUniqueWithoutPositionsInput { where: UserWhereUniqueInput! } input UserWhereInput { """Logical AND on all given filters.""" AND: [UserWhereInput!] """Logical OR on all given filters.""" OR: [UserWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [UserWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime username: String """All values that are not equal to given value.""" username_not: String """All values that are contained in given list.""" username_in: [String!] """All values that are not contained in given list.""" username_not_in: [String!] """All values less than the given value.""" username_lt: String """All values less than or equal the given value.""" username_lte: String """All values greater than the given value.""" username_gt: String """All values greater than or equal the given value.""" username_gte: String """All values containing the given string.""" username_contains: String """All values not containing the given string.""" username_not_contains: String """All values starting with the given string.""" username_starts_with: String """All values not starting with the given string.""" username_not_starts_with: String """All values ending with the given string.""" username_ends_with: String """All values not ending with the given string.""" username_not_ends_with: String email: String """All values that are not equal to given value.""" email_not: String """All values that are contained in given list.""" email_in: [String!] """All values that are not contained in given list.""" email_not_in: [String!] """All values less than the given value.""" email_lt: String """All values less than or equal the given value.""" email_lte: String """All values greater than the given value.""" email_gt: String """All values greater than or equal the given value.""" email_gte: String """All values containing the given string.""" email_contains: String """All values not containing the given string.""" email_not_contains: String """All values starting with the given string.""" email_starts_with: String """All values not starting with the given string.""" email_not_starts_with: String """All values ending with the given string.""" email_ends_with: String """All values not ending with the given string.""" email_not_ends_with: String phone: String """All values that are not equal to given value.""" phone_not: String """All values that are contained in given list.""" phone_in: [String!] """All values that are not contained in given list.""" phone_not_in: [String!] """All values less than the given value.""" phone_lt: String """All values less than or equal the given value.""" phone_lte: String """All values greater than the given value.""" phone_gt: String """All values greater than or equal the given value.""" phone_gte: String """All values containing the given string.""" phone_contains: String """All values not containing the given string.""" phone_not_contains: String """All values starting with the given string.""" phone_starts_with: String """All values not starting with the given string.""" phone_not_starts_with: String """All values ending with the given string.""" phone_ends_with: String """All values not ending with the given string.""" phone_not_ends_with: String showEmail: Boolean """All values that are not equal to given value.""" showEmail_not: Boolean showPhone: Boolean """All values that are not equal to given value.""" showPhone_not: Boolean password: String """All values that are not equal to given value.""" password_not: String """All values that are contained in given list.""" password_in: [String!] """All values that are not contained in given list.""" password_not_in: [String!] """All values less than the given value.""" password_lt: String """All values less than or equal the given value.""" password_lte: String """All values greater than the given value.""" password_gt: String """All values greater than or equal the given value.""" password_gte: String """All values containing the given string.""" password_contains: String """All values not containing the given string.""" password_not_contains: String """All values starting with the given string.""" password_starts_with: String """All values not starting with the given string.""" password_not_starts_with: String """All values ending with the given string.""" password_ends_with: String """All values not ending with the given string.""" password_not_ends_with: String fullname: String """All values that are not equal to given value.""" fullname_not: String """All values that are contained in given list.""" fullname_in: [String!] """All values that are not contained in given list.""" fullname_not_in: [String!] """All values less than the given value.""" fullname_lt: String """All values less than or equal the given value.""" fullname_lte: String """All values greater than the given value.""" fullname_gt: String """All values greater than or equal the given value.""" fullname_gte: String """All values containing the given string.""" fullname_contains: String """All values not containing the given string.""" fullname_not_contains: String """All values starting with the given string.""" fullname_starts_with: String """All values not starting with the given string.""" fullname_not_starts_with: String """All values ending with the given string.""" fullname_ends_with: String """All values not ending with the given string.""" fullname_not_ends_with: String image: String """All values that are not equal to given value.""" image_not: String """All values that are contained in given list.""" image_in: [String!] """All values that are not contained in given list.""" image_not_in: [String!] """All values less than the given value.""" image_lt: String """All values less than or equal the given value.""" image_lte: String """All values greater than the given value.""" image_gt: String """All values greater than or equal the given value.""" image_gte: String """All values containing the given string.""" image_contains: String """All values not containing the given string.""" image_not_contains: String """All values starting with the given string.""" image_starts_with: String """All values not starting with the given string.""" image_not_starts_with: String """All values ending with the given string.""" image_ends_with: String """All values not ending with the given string.""" image_not_ends_with: String address: String """All values that are not equal to given value.""" address_not: String """All values that are contained in given list.""" address_in: [String!] """All values that are not contained in given list.""" address_not_in: [String!] """All values less than the given value.""" address_lt: String """All values less than or equal the given value.""" address_lte: String """All values greater than the given value.""" address_gt: String """All values greater than or equal the given value.""" address_gte: String """All values containing the given string.""" address_contains: String """All values not containing the given string.""" address_not_contains: String """All values starting with the given string.""" address_starts_with: String """All values not starting with the given string.""" address_not_starts_with: String """All values ending with the given string.""" address_ends_with: String """All values not ending with the given string.""" address_not_ends_with: String active: Boolean """All values that are not equal to given value.""" active_not: Boolean activated: Boolean """All values that are not equal to given value.""" activated_not: Boolean deleted: Boolean """All values that are not equal to given value.""" deleted_not: Boolean hidden: Boolean """All values that are not equal to given value.""" hidden_not: Boolean marketplaceToken: String """All values that are not equal to given value.""" marketplaceToken_not: String """All values that are contained in given list.""" marketplaceToken_in: [String!] """All values that are not contained in given list.""" marketplaceToken_not_in: [String!] """All values less than the given value.""" marketplaceToken_lt: String """All values less than or equal the given value.""" marketplaceToken_lte: String """All values greater than the given value.""" marketplaceToken_gt: String """All values greater than or equal the given value.""" marketplaceToken_gte: String """All values containing the given string.""" marketplaceToken_contains: String """All values not containing the given string.""" marketplaceToken_not_contains: String """All values starting with the given string.""" marketplaceToken_starts_with: String """All values not starting with the given string.""" marketplaceToken_not_starts_with: String """All values ending with the given string.""" marketplaceToken_ends_with: String """All values not ending with the given string.""" marketplaceToken_not_ends_with: String secondID: ID """All values that are not equal to given value.""" secondID_not: ID """All values that are contained in given list.""" secondID_in: [ID!] """All values that are not contained in given list.""" secondID_not_in: [ID!] """All values less than the given value.""" secondID_lt: ID """All values less than or equal the given value.""" secondID_lte: ID """All values greater than the given value.""" secondID_gt: ID """All values greater than or equal the given value.""" secondID_gte: ID """All values containing the given string.""" secondID_contains: ID """All values not containing the given string.""" secondID_not_contains: ID """All values starting with the given string.""" secondID_starts_with: ID """All values not starting with the given string.""" secondID_not_starts_with: ID """All values ending with the given string.""" secondID_ends_with: ID """All values not ending with the given string.""" secondID_not_ends_with: ID exported: Boolean """All values that are not equal to given value.""" exported_not: Boolean sudo: Boolean """All values that are not equal to given value.""" sudo_not: Boolean auctions: String """All values that are not equal to given value.""" auctions_not: String """All values that are contained in given list.""" auctions_in: [String!] """All values that are not contained in given list.""" auctions_not_in: [String!] """All values less than the given value.""" auctions_lt: String """All values less than or equal the given value.""" auctions_lte: String """All values greater than the given value.""" auctions_gt: String """All values greater than or equal the given value.""" auctions_gte: String """All values containing the given string.""" auctions_contains: String """All values not containing the given string.""" auctions_not_contains: String """All values starting with the given string.""" auctions_starts_with: String """All values not starting with the given string.""" auctions_not_starts_with: String """All values ending with the given string.""" auctions_ends_with: String """All values not ending with the given string.""" auctions_not_ends_with: String lots: String """All values that are not equal to given value.""" lots_not: String """All values that are contained in given list.""" lots_in: [String!] """All values that are not contained in given list.""" lots_not_in: [String!] """All values less than the given value.""" lots_lt: String """All values less than or equal the given value.""" lots_lte: String """All values greater than the given value.""" lots_gt: String """All values greater than or equal the given value.""" lots_gte: String """All values containing the given string.""" lots_contains: String """All values not containing the given string.""" lots_not_contains: String """All values starting with the given string.""" lots_starts_with: String """All values not starting with the given string.""" lots_not_starts_with: String """All values ending with the given string.""" lots_ends_with: String """All values not ending with the given string.""" lots_not_ends_with: String prices: String """All values that are not equal to given value.""" prices_not: String """All values that are contained in given list.""" prices_in: [String!] """All values that are not contained in given list.""" prices_not_in: [String!] """All values less than the given value.""" prices_lt: String """All values less than or equal the given value.""" prices_lte: String """All values greater than the given value.""" prices_gt: String """All values greater than or equal the given value.""" prices_gte: String """All values containing the given string.""" prices_contains: String """All values not containing the given string.""" prices_not_contains: String """All values starting with the given string.""" prices_starts_with: String """All values not starting with the given string.""" prices_not_starts_with: String """All values ending with the given string.""" prices_ends_with: String """All values not ending with the given string.""" prices_not_ends_with: String looked: String """All values that are not equal to given value.""" looked_not: String """All values that are contained in given list.""" looked_in: [String!] """All values that are not contained in given list.""" looked_not_in: [String!] """All values less than the given value.""" looked_lt: String """All values less than or equal the given value.""" looked_lte: String """All values greater than the given value.""" looked_gt: String """All values greater than or equal the given value.""" looked_gte: String """All values containing the given string.""" looked_contains: String """All values not containing the given string.""" looked_not_contains: String """All values starting with the given string.""" looked_starts_with: String """All values not starting with the given string.""" looked_not_starts_with: String """All values ending with the given string.""" looked_ends_with: String """All values not ending with the given string.""" looked_not_ends_with: String preferences: String """All values that are not equal to given value.""" preferences_not: String """All values that are contained in given list.""" preferences_in: [String!] """All values that are not contained in given list.""" preferences_not_in: [String!] """All values less than the given value.""" preferences_lt: String """All values less than or equal the given value.""" preferences_lte: String """All values greater than the given value.""" preferences_gt: String """All values greater than or equal the given value.""" preferences_gte: String """All values containing the given string.""" preferences_contains: String """All values not containing the given string.""" preferences_not_contains: String """All values starting with the given string.""" preferences_starts_with: String """All values not starting with the given string.""" preferences_not_starts_with: String """All values ending with the given string.""" preferences_ends_with: String """All values not ending with the given string.""" preferences_not_ends_with: String info: String """All values that are not equal to given value.""" info_not: String """All values that are contained in given list.""" info_in: [String!] """All values that are not contained in given list.""" info_not_in: [String!] """All values less than the given value.""" info_lt: String """All values less than or equal the given value.""" info_lte: String """All values greater than the given value.""" info_gt: String """All values greater than or equal the given value.""" info_gte: String """All values containing the given string.""" info_contains: String """All values not containing the given string.""" info_not_contains: String """All values starting with the given string.""" info_starts_with: String """All values not starting with the given string.""" info_not_starts_with: String """All values ending with the given string.""" info_ends_with: String """All values not ending with the given string.""" info_not_ends_with: String requestJoin: Boolean """All values that are not equal to given value.""" requestJoin_not: Boolean Groups_every: UserGroupWhereInput Groups_some: UserGroupWhereInput Groups_none: UserGroupWhereInput CreatedUsers_every: UserWhereInput CreatedUsers_some: UserWhereInput CreatedUsers_none: UserWhereInput CreatedBy: UserWhereInput LogedIns_every: LogedInWhereInput LogedIns_some: LogedInWhereInput LogedIns_none: LogedInWhereInput Files_every: FileWhereInput Files_some: FileWhereInput Files_none: FileWhereInput Resources_every: ResourceWhereInput Resources_some: ResourceWhereInput Resources_none: ResourceWhereInput Rooms_every: ChatRoomWhereInput Rooms_some: ChatRoomWhereInput Rooms_none: ChatRoomWhereInput CreatedRooms_every: ChatRoomWhereInput CreatedRooms_some: ChatRoomWhereInput CreatedRooms_none: ChatRoomWhereInput Messages_every: ChatMessageWhereInput Messages_some: ChatMessageWhereInput Messages_none: ChatMessageWhereInput ReadedMessages_every: ChatMessageReadedWhereInput ReadedMessages_some: ChatMessageReadedWhereInput ReadedMessages_none: ChatMessageReadedWhereInput Notices_every: NoticeWhereInput Notices_some: NoticeWhereInput Notices_none: NoticeWhereInput Votes_every: VoteWhereInput Votes_some: VoteWhereInput Votes_none: VoteWhereInput NotificationTypes_every: NotificationTypeWhereInput NotificationTypes_some: NotificationTypeWhereInput NotificationTypes_none: NotificationTypeWhereInput NotificationTypesCreated_every: NotificationTypeWhereInput NotificationTypesCreated_some: NotificationTypeWhereInput NotificationTypesCreated_none: NotificationTypeWhereInput Tags_every: TagWhereInput Tags_some: TagWhereInput Tags_none: TagWhereInput ResourceTags_every: ResourceTagWhereInput ResourceTags_some: ResourceTagWhereInput ResourceTags_none: ResourceTagWhereInput Teams_every: TeamMemberWhereInput Teams_some: TeamMemberWhereInput Teams_none: TeamMemberWhereInput TeamsCreated_every: TeamWhereInput TeamsCreated_some: TeamWhereInput TeamsCreated_none: TeamWhereInput Projects_every: ProjectMemberWhereInput Projects_some: ProjectMemberWhereInput Projects_none: ProjectMemberWhereInput ProjectsCreated_every: ProjectWhereInput ProjectsCreated_some: ProjectWhereInput ProjectsCreated_none: ProjectWhereInput Tasks_every: TaskMemberWhereInput Tasks_some: TaskMemberWhereInput Tasks_none: TaskMemberWhereInput Timers_every: TimerWhereInput Timers_some: TimerWhereInput Timers_none: TimerWhereInput PositionsCreated_every: PositionWhereInput PositionsCreated_some: PositionWhereInput PositionsCreated_none: PositionWhereInput Positions_every: PositionWhereInput Positions_some: PositionWhereInput Positions_none: PositionWhereInput TasksReactions_every: TaskReactionWhereInput TasksReactions_some: TaskReactionWhereInput TasksReactions_none: TaskReactionWhereInput CustomerChats_every: ChatRoomWhereInput CustomerChats_some: ChatRoomWhereInput CustomerChats_none: ChatRoomWhereInput ModxUser: ModxUserWhereInput Orders_every: OrderWhereInput Orders_some: OrderWhereInput Orders_none: OrderWhereInput ServiceOrders_every: ServiceOrderWhereInput ServiceOrders_some: ServiceOrderWhereInput ServiceOrders_none: ServiceOrderWhereInput Changes_every: ChangeWhereInput Changes_some: ChangeWhereInput Changes_none: ChangeWhereInput ChatRooms_every: ChatRoomWhereInput ChatRooms_some: ChatRoomWhereInput ChatRooms_none: ChatRoomWhereInput DiscountGroup: DiscountGroupWhereInput search: String showHidden: Boolean } input UserWhereUniqueInput { id: ID username: String email: String fullname: String secondID: ID } type Vote implements Node { id: ID! createdAt: DateTime! updatedAt: DateTime! Resource(where: ResourceWhereInput): Resource! User(where: UserWhereInput): User! value: Float! } """A connection to a list of items.""" type VoteConnection { """Information to aid in pagination.""" pageInfo: PageInfo! """A list of edges.""" edges: [VoteEdge]! aggregate: AggregateVote! } input VoteCreateInput { value: Float! Resource: ResourceCreateOneWithoutVotesInput! User: UserCreateOneWithoutVotesInput! } input VoteCreateManyWithoutResourceInput { connect: [VoteWhereUniqueInput!] } input VoteCreateManyWithoutUserInput { connect: [VoteWhereUniqueInput!] } input VoteCreateWithoutResourceInput { value: Float! User: UserCreateOneWithoutVotesInput! } input VoteCreateWithoutUserInput { value: Float! Resource: ResourceCreateOneWithoutVotesInput! } """An edge in a connection.""" type VoteEdge { """The item at the end of the edge.""" node: Vote! """A cursor for use in pagination.""" cursor: String! } enum VoteOrderByInput { id_ASC id_DESC createdAt_ASC createdAt_DESC updatedAt_ASC updatedAt_DESC value_ASC value_DESC } type VotePreviousValues { id: ID! createdAt: DateTime! updatedAt: DateTime! value: Float! } type VoteSubscriptionPayload { mutation: MutationType! node: Vote updatedFields: [String!] previousValues: VotePreviousValues } input VoteSubscriptionWhereInput { """Logical AND on all given filters.""" AND: [VoteSubscriptionWhereInput!] """Logical OR on all given filters.""" OR: [VoteSubscriptionWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [VoteSubscriptionWhereInput!] """ The subscription event gets dispatched when it's listed in mutation_in """ mutation_in: [MutationType!] """ The subscription event gets only dispatched when one of the updated fields names is included in this list """ updatedFields_contains: String """ The subscription event gets only dispatched when all of the field names included in this list have been updated """ updatedFields_contains_every: [String!] """ The subscription event gets only dispatched when some of the field names included in this list have been updated """ updatedFields_contains_some: [String!] node: VoteWhereInput } input VoteUpdateInput { value: Float Resource: ResourceUpdateOneWithoutVotesInput User: UserUpdateOneWithoutVotesInput } input VoteUpdateManyWithoutResourceInput { connect: [VoteWhereUniqueInput!] disconnect: [VoteWhereUniqueInput!] } input VoteUpdateManyWithoutUserInput { connect: [VoteWhereUniqueInput!] disconnect: [VoteWhereUniqueInput!] } input VoteUpdateWithoutResourceDataInput { value: Float User: UserUpdateOneWithoutVotesInput } input VoteUpdateWithoutUserDataInput { value: Float Resource: ResourceUpdateOneWithoutVotesInput } input VoteUpdateWithWhereUniqueWithoutResourceInput { where: VoteWhereUniqueInput! data: VoteUpdateWithoutResourceDataInput! } input VoteUpdateWithWhereUniqueWithoutUserInput { where: VoteWhereUniqueInput! data: VoteUpdateWithoutUserDataInput! } input VoteUpsertWithWhereUniqueWithoutResourceInput { where: VoteWhereUniqueInput! } input VoteUpsertWithWhereUniqueWithoutUserInput { where: VoteWhereUniqueInput! } input VoteWhereInput { """Logical AND on all given filters.""" AND: [VoteWhereInput!] """Logical OR on all given filters.""" OR: [VoteWhereInput!] """Logical NOT on all given filters combined by AND.""" NOT: [VoteWhereInput!] id: ID """All values that are not equal to given value.""" id_not: ID """All values that are contained in given list.""" id_in: [ID!] """All values that are not contained in given list.""" id_not_in: [ID!] """All values less than the given value.""" id_lt: ID """All values less than or equal the given value.""" id_lte: ID """All values greater than the given value.""" id_gt: ID """All values greater than or equal the given value.""" id_gte: ID """All values containing the given string.""" id_contains: ID """All values not containing the given string.""" id_not_contains: ID """All values starting with the given string.""" id_starts_with: ID """All values not starting with the given string.""" id_not_starts_with: ID """All values ending with the given string.""" id_ends_with: ID """All values not ending with the given string.""" id_not_ends_with: ID createdAt: DateTime """All values that are not equal to given value.""" createdAt_not: DateTime """All values that are contained in given list.""" createdAt_in: [DateTime!] """All values that are not contained in given list.""" createdAt_not_in: [DateTime!] """All values less than the given value.""" createdAt_lt: DateTime """All values less than or equal the given value.""" createdAt_lte: DateTime """All values greater than the given value.""" createdAt_gt: DateTime """All values greater than or equal the given value.""" createdAt_gte: DateTime updatedAt: DateTime """All values that are not equal to given value.""" updatedAt_not: DateTime """All values that are contained in given list.""" updatedAt_in: [DateTime!] """All values that are not contained in given list.""" updatedAt_not_in: [DateTime!] """All values less than the given value.""" updatedAt_lt: DateTime """All values less than or equal the given value.""" updatedAt_lte: DateTime """All values greater than the given value.""" updatedAt_gt: DateTime """All values greater than or equal the given value.""" updatedAt_gte: DateTime value: Float """All values that are not equal to given value.""" value_not: Float """All values that are contained in given list.""" value_in: [Float!] """All values that are not contained in given list.""" value_not_in: [Float!] """All values less than the given value.""" value_lt: Float """All values less than or equal the given value.""" value_lte: Float """All values greater than the given value.""" value_gt: Float """All values greater than or equal the given value.""" value_gte: Float Resource: ResourceWhereInput User: UserWhereInput } input VoteWhereUniqueInput { id: ID }