diff --git a/distributor-node/src/services/networking/query-node/schema.graphql b/distributor-node/src/services/networking/query-node/schema.graphql index 0f82590722..1e21139160 100644 --- a/distributor-node/src/services/networking/query-node/schema.graphql +++ b/distributor-node/src/services/networking/query-node/schema.graphql @@ -290,6 +290,157 @@ type ForumThreadTag implements BaseGraphQLObject { visibleThreadsCount: Int! } +type ProposalDiscussionPost implements BaseGraphQLObject { + id: ID! + createdAt: DateTime! + createdById: ID! + updatedAt: DateTime + updatedById: ID + deletedAt: DateTime + deletedById: ID + version: Int! + discussionThread: ProposalDiscussionThread! + discussionThreadId: String! + author: Membership! + authorId: String! + + """Current post status""" + status: ProposalDiscussionPostStatus! + + """True if the post is either Active or Locked""" + isVisible: Boolean! + + """Post's md-formatted text""" + text: String! + repliesTo: ProposalDiscussionPost + repliesToId: String + updates: [ProposalDiscussionPostUpdatedEvent!]! + createdInEvent: ProposalDiscussionPostCreatedEvent! + proposaldiscussionpostrepliesTo: [ProposalDiscussionPost!] + proposaldiscussionpostdeletedeventpost: [ProposalDiscussionPostDeletedEvent!] +} + +union ProposalDiscussionPostStatus = ProposalDiscussionPostStatusActive | ProposalDiscussionPostStatusLocked | ProposalDiscussionPostStatusRemoved + +union ProposalDiscussionThreadMode = ProposalDiscussionThreadModeOpen | ProposalDiscussionThreadModeClosed + +type ProposalDiscussionThread implements BaseGraphQLObject { + id: ID! + createdAt: DateTime! + createdById: ID! + updatedAt: DateTime + updatedById: ID + deletedAt: DateTime + deletedById: ID + version: Int! + proposal: Proposal! + proposalId: String! + posts: [ProposalDiscussionPost!]! + + """Current thread mode""" + mode: ProposalDiscussionThreadMode! + modeChanges: [ProposalDiscussionThreadModeChangedEvent!]! +} + +union ProposalIntermediateStatus = ProposalStatusDeciding | ProposalStatusGracing | ProposalStatusDormant + +enum ProposalVoteKind { + APPROVE + REJECT + SLASH + ABSTAIN +} + +union ProposalDecisionStatus = ProposalStatusDormant | ProposalStatusGracing | ProposalStatusVetoed | ProposalStatusSlashed | ProposalStatusRejected | ProposalStatusExpired | ProposalStatusCancelled | ProposalStatusCanceledByRuntime + +union ProposalExecutionStatus = ProposalStatusExecuted | ProposalStatusExecutionFailed + +type Proposal implements BaseGraphQLObject { + id: ID! + createdAt: DateTime! + createdById: ID! + updatedAt: DateTime + updatedById: ID + deletedAt: DateTime + deletedById: ID + version: Int! + + """Proposal title""" + title: String! + + """Proposal description""" + description: String! + + """Proposal details depending on proposal type""" + details: ProposalDetails! + + """Staking account with proposal stake (in case a stake is required)""" + stakingAccount: String + creator: Membership! + creatorId: String! + createdInEvent: ProposalCreatedEvent! + + """ + Exact block number the proposal is supposed to be executed at (if specified) + """ + exactExecutionBlock: Int + discussionThread: ProposalDiscussionThread! + + """ + How many prior councils have already approved the proposal (starts with 0) + """ + councilApprovals: Int! + proposalStatusUpdates: [ProposalStatusUpdatedEvent!]! + votes: [ProposalVotedEvent!]! + + """Current proposal status""" + status: ProposalStatus! + + """ + If true then the proposal status is final and will not change form this point + """ + isFinalized: Boolean + + """Number of the block the current status was set at""" + statusSetAtBlock: Int! + + """Time the current status was set at (based on block timestamp)""" + statusSetAtTime: DateTime! + tags: [Tag!]! + proposalcancelledeventproposal: [ProposalCancelledEvent!] + proposaldecisionmadeeventproposal: [ProposalDecisionMadeEvent!] + proposalexecutedeventproposal: [ProposalExecutedEvent!] +} + +union ProposalDetails = SignalProposalDetails | RuntimeUpgradeProposalDetails | FundingRequestProposalDetails | SetMaxValidatorCountProposalDetails | CreateWorkingGroupLeadOpeningProposalDetails | FillWorkingGroupLeadOpeningProposalDetails | UpdateWorkingGroupBudgetProposalDetails | DecreaseWorkingGroupLeadStakeProposalDetails | SlashWorkingGroupLeadProposalDetails | SetWorkingGroupLeadRewardProposalDetails | TerminateWorkingGroupLeadProposalDetails | AmendConstitutionProposalDetails | CancelWorkingGroupLeadOpeningProposalDetails | SetMembershipPriceProposalDetails | SetCouncilBudgetIncrementProposalDetails | SetCouncilorRewardProposalDetails | SetInitialInvitationBalanceProposalDetails | SetInitialInvitationCountProposalDetails | SetMembershipLeadInvitationQuotaProposalDetails | SetReferralCutProposalDetails | VetoProposalDetails | UpdateChannelPayoutsProposalDetails | UpdateGlobalNftLimitProposalDetails + +union ProposalStatus = ProposalStatusDeciding | ProposalStatusGracing | ProposalStatusDormant | ProposalStatusVetoed | ProposalStatusExecuted | ProposalStatusExecutionFailed | ProposalStatusSlashed | ProposalStatusRejected | ProposalStatusExpired | ProposalStatusCancelled | ProposalStatusCanceledByRuntime + +type Tag implements BaseGraphQLObject { + id: ID! + createdAt: DateTime! + createdById: ID! + updatedAt: DateTime + updatedById: ID + deletedAt: DateTime + deletedById: ID + version: Int! + + """The name of tag""" + name: String! + + """The description of tag""" + description: String! + + """The type of tag""" + type: String! + + """Visibility of tag""" + visibility: Boolean! + forumThreads: [ForumThread!]! + proposals: [Proposal!]! +} + type BountyEntrantWhitelist implements BaseGraphQLObject { id: ID! createdAt: DateTime! @@ -472,6 +623,7 @@ type ForumThread implements BaseGraphQLObject { madeStickyInEvents: [CategoryStickyThreadUpdateEvent!]! movedInEvents: [ThreadMovedEvent!]! tags: [ForumThreadTag!]! + newTags: [Tag!]! bountydiscussionThread: [Bounty!] threaddeletedeventthread: [ThreadDeletedEvent!] threadmoderatedeventthread: [ThreadModeratedEvent!] @@ -2039,20 +2191,7 @@ type MemberMetadata implements BaseGraphQLObject { union Avatar = AvatarObject | AvatarUri -union ProposalIntermediateStatus = ProposalStatusDeciding | ProposalStatusGracing | ProposalStatusDormant - -enum ProposalVoteKind { - APPROVE - REJECT - SLASH - ABSTAIN -} - -union ProposalDecisionStatus = ProposalStatusDormant | ProposalStatusGracing | ProposalStatusVetoed | ProposalStatusSlashed | ProposalStatusRejected | ProposalStatusExpired | ProposalStatusCancelled | ProposalStatusCanceledByRuntime - -union ProposalExecutionStatus = ProposalStatusExecuted | ProposalStatusExecutionFailed - -type Proposal implements BaseGraphQLObject { +type ProposalDiscussionWhitelist implements BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -2061,60 +2200,11 @@ type Proposal implements BaseGraphQLObject { deletedAt: DateTime deletedById: ID version: Int! - - """Proposal title""" - title: String! - - """Proposal description""" - description: String! - - """Proposal details depending on proposal type""" - details: ProposalDetails! - - """Staking account with proposal stake (in case a stake is required)""" - stakingAccount: String - creator: Membership! - creatorId: String! - createdInEvent: ProposalCreatedEvent! - - """ - Exact block number the proposal is supposed to be executed at (if specified) - """ - exactExecutionBlock: Int - discussionThread: ProposalDiscussionThread! - - """ - How many prior councils have already approved the proposal (starts with 0) - """ - councilApprovals: Int! - proposalStatusUpdates: [ProposalStatusUpdatedEvent!]! - votes: [ProposalVotedEvent!]! - - """Current proposal status""" - status: ProposalStatus! - - """ - If true then the proposal status is final and will not change form this point - """ - isFinalized: Boolean - - """Number of the block the current status was set at""" - statusSetAtBlock: Int! - - """Time the current status was set at (based on block timestamp)""" - statusSetAtTime: DateTime! - proposalcancelledeventproposal: [ProposalCancelledEvent!] - proposaldecisionmadeeventproposal: [ProposalDecisionMadeEvent!] - proposalexecutedeventproposal: [ProposalExecutedEvent!] + phantom: Int + members: [Membership!]! } -union ProposalDetails = SignalProposalDetails | RuntimeUpgradeProposalDetails | FundingRequestProposalDetails | SetMaxValidatorCountProposalDetails | CreateWorkingGroupLeadOpeningProposalDetails | FillWorkingGroupLeadOpeningProposalDetails | UpdateWorkingGroupBudgetProposalDetails | DecreaseWorkingGroupLeadStakeProposalDetails | SlashWorkingGroupLeadProposalDetails | SetWorkingGroupLeadRewardProposalDetails | TerminateWorkingGroupLeadProposalDetails | AmendConstitutionProposalDetails | CancelWorkingGroupLeadOpeningProposalDetails | SetMembershipPriceProposalDetails | SetCouncilBudgetIncrementProposalDetails | SetCouncilorRewardProposalDetails | SetInitialInvitationBalanceProposalDetails | SetInitialInvitationCountProposalDetails | SetMembershipLeadInvitationQuotaProposalDetails | SetReferralCutProposalDetails | VetoProposalDetails | UpdateChannelPayoutsProposalDetails | UpdateGlobalNftLimitProposalDetails - -union ProposalStatus = ProposalStatusDeciding | ProposalStatusGracing | ProposalStatusDormant | ProposalStatusVetoed | ProposalStatusExecuted | ProposalStatusExecutionFailed | ProposalStatusSlashed | ProposalStatusRejected | ProposalStatusExpired | ProposalStatusCancelled | ProposalStatusCanceledByRuntime - -union ProposalDiscussionThreadMode = ProposalDiscussionThreadModeOpen | ProposalDiscussionThreadModeClosed - -type ProposalDiscussionThread implements BaseGraphQLObject { +type RuntimeWasmBytecode implements BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -2123,86 +2213,23 @@ type ProposalDiscussionThread implements BaseGraphQLObject { deletedAt: DateTime deletedById: ID version: Int! - proposal: Proposal! - proposalId: String! - posts: [ProposalDiscussionPost!]! - """Current thread mode""" - mode: ProposalDiscussionThreadMode! - modeChanges: [ProposalDiscussionThreadModeChangedEvent!]! + """The bytecode itself""" + bytecode: Bytes! } -type ProposalDiscussionPost implements BaseGraphQLObject { - id: ID! - createdAt: DateTime! - createdById: ID! - updatedAt: DateTime - updatedById: ID - deletedAt: DateTime - deletedById: ID - version: Int! - discussionThread: ProposalDiscussionThread! - discussionThreadId: String! - author: Membership! - authorId: String! - - """Current post status""" - status: ProposalDiscussionPostStatus! - - """True if the post is either Active or Locked""" - isVisible: Boolean! +"""GraphQL representation of Bytes""" +scalar Bytes - """Post's md-formatted text""" +type AmendConstitutionProposalDetails { + """New (proposed) constitution text (md-formatted)""" text: String! - repliesTo: ProposalDiscussionPost - repliesToId: String - updates: [ProposalDiscussionPostUpdatedEvent!]! - createdInEvent: ProposalDiscussionPostCreatedEvent! - proposaldiscussionpostrepliesTo: [ProposalDiscussionPost!] - proposaldiscussionpostdeletedeventpost: [ProposalDiscussionPostDeletedEvent!] } -union ProposalDiscussionPostStatus = ProposalDiscussionPostStatusActive | ProposalDiscussionPostStatusLocked | ProposalDiscussionPostStatusRemoved - -type ProposalDiscussionWhitelist implements BaseGraphQLObject { - id: ID! - createdAt: DateTime! - createdById: ID! - updatedAt: DateTime - updatedById: ID - deletedAt: DateTime - deletedById: ID - version: Int! - phantom: Int - members: [Membership!]! -} - -type RuntimeWasmBytecode implements BaseGraphQLObject { - id: ID! - createdAt: DateTime! - createdById: ID! - updatedAt: DateTime - updatedById: ID - deletedAt: DateTime - deletedById: ID - version: Int! - - """The bytecode itself""" - bytecode: Bytes! -} - -"""GraphQL representation of Bytes""" -scalar Bytes - -type AmendConstitutionProposalDetails { - """New (proposed) constitution text (md-formatted)""" - text: String! -} - -type ApplicationStatusAccepted { - """Related OpeningFilled event""" - openingFilledEvent: OpeningFilledEvent -} +type ApplicationStatusAccepted { + """Related OpeningFilled event""" + openingFilledEvent: OpeningFilledEvent +} type ApplicationStatusCancelled { """Related OpeningCanceled event""" @@ -3464,6 +3491,20 @@ type ChannelVisibilitySetByModeratorEvent implements BaseGraphQLObject { union MetaprotocolTransactionStatus = MetaprotocolTransactionSuccessful | MetaprotocolTransactionErrored +type TagPermittedWorker implements BaseGraphQLObject { + id: ID! + createdAt: DateTime! + createdById: ID! + updatedAt: DateTime + updatedById: ID + deletedAt: DateTime + deletedById: ID + version: Int! + + """Id of worker""" + workerId: String! +} + type VideoAssetsDeletedByModeratorEvent implements BaseGraphQLObject { id: ID! createdAt: DateTime! @@ -5542,6 +5583,28 @@ type StorageDataObjectConnection { pageInfo: PageInfo! } +type TagPermittedWorkerEdge { + node: TagPermittedWorker! + cursor: String! +} + +type TagPermittedWorkerConnection { + totalCount: Int! + edges: [TagPermittedWorkerEdge!]! + pageInfo: PageInfo! +} + +type TagEdge { + node: Tag! + cursor: String! +} + +type TagConnection { + totalCount: Int! + edges: [TagEdge!]! + pageInfo: PageInfo! +} + type TerminatedLeaderEventEdge { node: TerminatedLeaderEvent! cursor: String! @@ -7551,7 +7614,7 @@ input ForumThreadTagUpdateInput { visibleThreadsCount: Float } -input BountyEntrantWhitelistWhereInput { +input ProposalCreatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -7576,36 +7639,52 @@ input BountyEntrantWhitelistWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - phantom_eq: Int - phantom_gt: Int - phantom_gte: Int - phantom_lt: Int - phantom_lte: Int - phantom_in: [Int!] - members_none: MembershipWhereInput - members_some: MembershipWhereInput - members_every: MembershipWhereInput - bountyentrantWhitelist_none: BountyWhereInput - bountyentrantWhitelist_some: BountyWhereInput - bountyentrantWhitelist_every: BountyWhereInput - AND: [BountyEntrantWhitelistWhereInput!] - OR: [BountyEntrantWhitelistWhereInput!] - NOT: [BountyEntrantWhitelistWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + proposal: ProposalWhereInput + AND: [ProposalCreatedEventWhereInput!] + OR: [ProposalCreatedEventWhereInput!] + NOT: [ProposalCreatedEventWhereInput!] } -input BountyEntrantWhitelistWhereUniqueInput { +input ProposalCreatedEventWhereUniqueInput { id: ID! } -input BountyEntrantWhitelistCreateInput { - phantom: Float +input ProposalCreatedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + proposal: ID! } -input BountyEntrantWhitelistUpdateInput { - phantom: Float +input ProposalCreatedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + proposal: ID } -input BountyFundedEventWhereInput { +input ProposalDiscussionPostUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -7649,33 +7728,40 @@ input BountyFundedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - contribution: BountyContributionWhereInput - AND: [BountyFundedEventWhereInput!] - OR: [BountyFundedEventWhereInput!] - NOT: [BountyFundedEventWhereInput!] + text_eq: String + text_contains: String + text_startsWith: String + text_endsWith: String + text_in: [String!] + post: ProposalDiscussionPostWhereInput + AND: [ProposalDiscussionPostUpdatedEventWhereInput!] + OR: [ProposalDiscussionPostUpdatedEventWhereInput!] + NOT: [ProposalDiscussionPostUpdatedEventWhereInput!] } -input BountyFundedEventWhereUniqueInput { +input ProposalDiscussionPostUpdatedEventWhereUniqueInput { id: ID! } -input BountyFundedEventCreateInput { +input ProposalDiscussionPostUpdatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - contribution: ID! + post: ID! + text: String! } -input BountyFundedEventUpdateInput { +input ProposalDiscussionPostUpdatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - contribution: ID + post: ID + text: String } -input BountyFundingWithdrawalEventWhereInput { +input ProposalDiscussionPostCreatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -7719,33 +7805,40 @@ input BountyFundingWithdrawalEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - contribution: BountyContributionWhereInput - AND: [BountyFundingWithdrawalEventWhereInput!] - OR: [BountyFundingWithdrawalEventWhereInput!] - NOT: [BountyFundingWithdrawalEventWhereInput!] + text_eq: String + text_contains: String + text_startsWith: String + text_endsWith: String + text_in: [String!] + post: ProposalDiscussionPostWhereInput + AND: [ProposalDiscussionPostCreatedEventWhereInput!] + OR: [ProposalDiscussionPostCreatedEventWhereInput!] + NOT: [ProposalDiscussionPostCreatedEventWhereInput!] } -input BountyFundingWithdrawalEventWhereUniqueInput { +input ProposalDiscussionPostCreatedEventWhereUniqueInput { id: ID! } -input BountyFundingWithdrawalEventCreateInput { +input ProposalDiscussionPostCreatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - contribution: ID! + post: ID! + text: String! } -input BountyFundingWithdrawalEventUpdateInput { +input ProposalDiscussionPostCreatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - contribution: ID + post: ID + text: String } -input BountyContributionWhereInput { +input ProposalDiscussionPostDeletedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -7770,47 +7863,55 @@ input BountyContributionWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - contributorId_eq: String - contributorId_contains: String - contributorId_startsWith: String - contributorId_endsWith: String - contributorId_in: [String!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - bounty: BountyWhereInput - contributor: MembershipWhereInput - bountyFundedEvents_none: BountyFundedEventWhereInput - bountyFundedEvents_some: BountyFundedEventWhereInput - bountyFundedEvents_every: BountyFundedEventWhereInput - withdrawnInEvent: BountyFundingWithdrawalEventWhereInput - AND: [BountyContributionWhereInput!] - OR: [BountyContributionWhereInput!] - NOT: [BountyContributionWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + post: ProposalDiscussionPostWhereInput + actor: MembershipWhereInput + AND: [ProposalDiscussionPostDeletedEventWhereInput!] + OR: [ProposalDiscussionPostDeletedEventWhereInput!] + NOT: [ProposalDiscussionPostDeletedEventWhereInput!] } -input BountyContributionWhereUniqueInput { +input ProposalDiscussionPostDeletedEventWhereUniqueInput { id: ID! } -input BountyContributionCreateInput { - bounty: ID! - contributor: ID - contributorId: String - amount: String! +input ProposalDiscussionPostDeletedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + post: ID! + actor: ID! } -input BountyContributionUpdateInput { - bounty: ID - contributor: ID - contributorId: String - amount: String +input ProposalDiscussionPostDeletedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + post: ID + actor: ID } -input WorkEntryAnnouncedEventWhereInput { +input ProposalDiscussionPostWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -7835,52 +7936,55 @@ input WorkEntryAnnouncedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - entry: BountyEntryWhereInput - AND: [WorkEntryAnnouncedEventWhereInput!] - OR: [WorkEntryAnnouncedEventWhereInput!] - NOT: [WorkEntryAnnouncedEventWhereInput!] + status_json: JSONObject + isVisible_eq: Boolean + isVisible_in: [Boolean!] + text_eq: String + text_contains: String + text_startsWith: String + text_endsWith: String + text_in: [String!] + discussionThread: ProposalDiscussionThreadWhereInput + author: MembershipWhereInput + repliesTo: ProposalDiscussionPostWhereInput + updates_none: ProposalDiscussionPostUpdatedEventWhereInput + updates_some: ProposalDiscussionPostUpdatedEventWhereInput + updates_every: ProposalDiscussionPostUpdatedEventWhereInput + createdInEvent: ProposalDiscussionPostCreatedEventWhereInput + proposaldiscussionpostrepliesTo_none: ProposalDiscussionPostWhereInput + proposaldiscussionpostrepliesTo_some: ProposalDiscussionPostWhereInput + proposaldiscussionpostrepliesTo_every: ProposalDiscussionPostWhereInput + proposaldiscussionpostdeletedeventpost_none: ProposalDiscussionPostDeletedEventWhereInput + proposaldiscussionpostdeletedeventpost_some: ProposalDiscussionPostDeletedEventWhereInput + proposaldiscussionpostdeletedeventpost_every: ProposalDiscussionPostDeletedEventWhereInput + AND: [ProposalDiscussionPostWhereInput!] + OR: [ProposalDiscussionPostWhereInput!] + NOT: [ProposalDiscussionPostWhereInput!] } -input WorkEntryAnnouncedEventWhereUniqueInput { +input ProposalDiscussionPostWhereUniqueInput { id: ID! } -input WorkEntryAnnouncedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - entry: ID! +input ProposalDiscussionPostCreateInput { + discussionThread: ID! + author: ID! + status: JSONObject! + isVisible: Boolean! + text: String! + repliesTo: ID } -input WorkEntryAnnouncedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - entry: ID +input ProposalDiscussionPostUpdateInput { + discussionThread: ID + author: ID + status: JSONObject + isVisible: Boolean + text: String + repliesTo: ID } -input WorkEntryWithdrawnEventWhereInput { +input ProposalDiscussionThreadModeChangedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -7924,33 +8028,91 @@ input WorkEntryWithdrawnEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - entry: BountyEntryWhereInput - AND: [WorkEntryWithdrawnEventWhereInput!] - OR: [WorkEntryWithdrawnEventWhereInput!] - NOT: [WorkEntryWithdrawnEventWhereInput!] + newMode_json: JSONObject + thread: ProposalDiscussionThreadWhereInput + actor: MembershipWhereInput + AND: [ProposalDiscussionThreadModeChangedEventWhereInput!] + OR: [ProposalDiscussionThreadModeChangedEventWhereInput!] + NOT: [ProposalDiscussionThreadModeChangedEventWhereInput!] } -input WorkEntryWithdrawnEventWhereUniqueInput { +input ProposalDiscussionThreadModeChangedEventWhereUniqueInput { id: ID! } -input WorkEntryWithdrawnEventCreateInput { +input ProposalDiscussionThreadModeChangedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - entry: ID! + thread: ID! + newMode: JSONObject! + actor: ID! } -input WorkEntryWithdrawnEventUpdateInput { +input ProposalDiscussionThreadModeChangedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - entry: ID + thread: ID + newMode: JSONObject + actor: ID } -input WorkEntrySlashedEventWhereInput { +input ProposalDiscussionThreadWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + mode_json: JSONObject + proposal: ProposalWhereInput + posts_none: ProposalDiscussionPostWhereInput + posts_some: ProposalDiscussionPostWhereInput + posts_every: ProposalDiscussionPostWhereInput + modeChanges_none: ProposalDiscussionThreadModeChangedEventWhereInput + modeChanges_some: ProposalDiscussionThreadModeChangedEventWhereInput + modeChanges_every: ProposalDiscussionThreadModeChangedEventWhereInput + AND: [ProposalDiscussionThreadWhereInput!] + OR: [ProposalDiscussionThreadWhereInput!] + NOT: [ProposalDiscussionThreadWhereInput!] +} + +input ProposalDiscussionThreadWhereUniqueInput { + id: ID! +} + +input ProposalDiscussionThreadCreateInput { + proposal: ID! + mode: JSONObject! +} + +input ProposalDiscussionThreadUpdateInput { + proposal: ID + mode: JSONObject +} + +input ProposalStatusUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -7994,33 +8156,36 @@ input WorkEntrySlashedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - entry: BountyEntryWhereInput - AND: [WorkEntrySlashedEventWhereInput!] - OR: [WorkEntrySlashedEventWhereInput!] - NOT: [WorkEntrySlashedEventWhereInput!] + newStatus_json: JSONObject + proposal: ProposalWhereInput + AND: [ProposalStatusUpdatedEventWhereInput!] + OR: [ProposalStatusUpdatedEventWhereInput!] + NOT: [ProposalStatusUpdatedEventWhereInput!] } -input WorkEntrySlashedEventWhereUniqueInput { +input ProposalStatusUpdatedEventWhereUniqueInput { id: ID! } -input WorkEntrySlashedEventCreateInput { +input ProposalStatusUpdatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - entry: ID! + proposal: ID! + newStatus: JSONObject! } -input WorkEntrySlashedEventUpdateInput { +input ProposalStatusUpdatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - entry: ID + proposal: ID + newStatus: JSONObject } -input WorkSubmittedEventWhereInput { +input ProposalVotedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8064,50 +8229,55 @@ input WorkSubmittedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - title_eq: String - title_contains: String - title_startsWith: String - title_endsWith: String - title_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - bounty: BountyWhereInput - entry: BountyEntryWhereInput - AND: [WorkSubmittedEventWhereInput!] - OR: [WorkSubmittedEventWhereInput!] - NOT: [WorkSubmittedEventWhereInput!] + voteKind_eq: ProposalVoteKind + voteKind_in: [ProposalVoteKind!] + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + votingRound_eq: Int + votingRound_gt: Int + votingRound_gte: Int + votingRound_lt: Int + votingRound_lte: Int + votingRound_in: [Int!] + voter: MembershipWhereInput + proposal: ProposalWhereInput + AND: [ProposalVotedEventWhereInput!] + OR: [ProposalVotedEventWhereInput!] + NOT: [ProposalVotedEventWhereInput!] } -input WorkSubmittedEventWhereUniqueInput { +input ProposalVotedEventWhereUniqueInput { id: ID! } -input WorkSubmittedEventCreateInput { +input ProposalVotedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - bounty: ID! - entry: ID! - title: String - description: String + voter: ID! + voteKind: ProposalVoteKind! + proposal: ID! + rationale: String! + votingRound: Float! } -input WorkSubmittedEventUpdateInput { +input ProposalVotedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - bounty: ID - entry: ID - title: String - description: String + voter: ID + voteKind: ProposalVoteKind + proposal: ID + rationale: String + votingRound: Float } -input WorkEntrantFundsWithdrawnEventWhereInput { +input ProposalCancelledEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8151,100 +8321,33 @@ input WorkEntrantFundsWithdrawnEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - entry: BountyEntryWhereInput - AND: [WorkEntrantFundsWithdrawnEventWhereInput!] - OR: [WorkEntrantFundsWithdrawnEventWhereInput!] - NOT: [WorkEntrantFundsWithdrawnEventWhereInput!] + proposal: ProposalWhereInput + AND: [ProposalCancelledEventWhereInput!] + OR: [ProposalCancelledEventWhereInput!] + NOT: [ProposalCancelledEventWhereInput!] } -input WorkEntrantFundsWithdrawnEventWhereUniqueInput { +input ProposalCancelledEventWhereUniqueInput { id: ID! } -input WorkEntrantFundsWithdrawnEventCreateInput { +input ProposalCancelledEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - entry: ID! + proposal: ID! } -input WorkEntrantFundsWithdrawnEventUpdateInput { +input ProposalCancelledEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - entry: ID + proposal: ID } -input BountyEntryWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - stakingAccount_eq: String - stakingAccount_contains: String - stakingAccount_startsWith: String - stakingAccount_endsWith: String - stakingAccount_in: [String!] - workSubmitted_eq: Boolean - workSubmitted_in: [Boolean!] - status_json: JSONObject - bounty: BountyWhereInput - worker: MembershipWhereInput - announcedInEvent: WorkEntryAnnouncedEventWhereInput - withdrawnInEvent: WorkEntryWithdrawnEventWhereInput - slashedInEvent: WorkEntrySlashedEventWhereInput - works_none: WorkSubmittedEventWhereInput - works_some: WorkSubmittedEventWhereInput - works_every: WorkSubmittedEventWhereInput - cashedOutInEvent: WorkEntrantFundsWithdrawnEventWhereInput - AND: [BountyEntryWhereInput!] - OR: [BountyEntryWhereInput!] - NOT: [BountyEntryWhereInput!] -} - -input BountyEntryWhereUniqueInput { - id: ID! -} - -input BountyEntryCreateInput { - bounty: ID! - worker: ID! - stakingAccount: String - workSubmitted: Boolean! - status: JSONObject! -} - -input BountyEntryUpdateInput { - bounty: ID - worker: ID - stakingAccount: String - workSubmitted: Boolean - status: JSONObject -} - -input BountyCreatedEventWhereInput { +input ProposalDecisionMadeEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8288,33 +8391,36 @@ input BountyCreatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - bounty: BountyWhereInput - AND: [BountyCreatedEventWhereInput!] - OR: [BountyCreatedEventWhereInput!] - NOT: [BountyCreatedEventWhereInput!] + decisionStatus_json: JSONObject + proposal: ProposalWhereInput + AND: [ProposalDecisionMadeEventWhereInput!] + OR: [ProposalDecisionMadeEventWhereInput!] + NOT: [ProposalDecisionMadeEventWhereInput!] } -input BountyCreatedEventWhereUniqueInput { +input ProposalDecisionMadeEventWhereUniqueInput { id: ID! } -input BountyCreatedEventCreateInput { +input ProposalDecisionMadeEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - bounty: ID! + proposal: ID! + decisionStatus: JSONObject! } -input BountyCreatedEventUpdateInput { +input ProposalDecisionMadeEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - bounty: ID + proposal: ID + decisionStatus: JSONObject } -input BountyCanceledEventWhereInput { +input ProposalExecutedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8358,33 +8464,36 @@ input BountyCanceledEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - bounty: BountyWhereInput - AND: [BountyCanceledEventWhereInput!] - OR: [BountyCanceledEventWhereInput!] - NOT: [BountyCanceledEventWhereInput!] + executionStatus_json: JSONObject + proposal: ProposalWhereInput + AND: [ProposalExecutedEventWhereInput!] + OR: [ProposalExecutedEventWhereInput!] + NOT: [ProposalExecutedEventWhereInput!] } -input BountyCanceledEventWhereUniqueInput { +input ProposalExecutedEventWhereUniqueInput { id: ID! } -input BountyCanceledEventCreateInput { +input ProposalExecutedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - bounty: ID! + proposal: ID! + executionStatus: JSONObject! } -input BountyCanceledEventUpdateInput { +input ProposalExecutedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - bounty: ID + proposal: ID + executionStatus: JSONObject } -input BountyVetoedEventWhereInput { +input ProposalWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8409,52 +8518,107 @@ input BountyVetoedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - bounty: BountyWhereInput - AND: [BountyVetoedEventWhereInput!] - OR: [BountyVetoedEventWhereInput!] - NOT: [BountyVetoedEventWhereInput!] + title_eq: String + title_contains: String + title_startsWith: String + title_endsWith: String + title_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + details_json: JSONObject + stakingAccount_eq: String + stakingAccount_contains: String + stakingAccount_startsWith: String + stakingAccount_endsWith: String + stakingAccount_in: [String!] + exactExecutionBlock_eq: Int + exactExecutionBlock_gt: Int + exactExecutionBlock_gte: Int + exactExecutionBlock_lt: Int + exactExecutionBlock_lte: Int + exactExecutionBlock_in: [Int!] + councilApprovals_eq: Int + councilApprovals_gt: Int + councilApprovals_gte: Int + councilApprovals_lt: Int + councilApprovals_lte: Int + councilApprovals_in: [Int!] + status_json: JSONObject + isFinalized_eq: Boolean + isFinalized_in: [Boolean!] + statusSetAtBlock_eq: Int + statusSetAtBlock_gt: Int + statusSetAtBlock_gte: Int + statusSetAtBlock_lt: Int + statusSetAtBlock_lte: Int + statusSetAtBlock_in: [Int!] + statusSetAtTime_eq: DateTime + statusSetAtTime_lt: DateTime + statusSetAtTime_lte: DateTime + statusSetAtTime_gt: DateTime + statusSetAtTime_gte: DateTime + creator: MembershipWhereInput + createdInEvent: ProposalCreatedEventWhereInput + discussionThread: ProposalDiscussionThreadWhereInput + proposalStatusUpdates_none: ProposalStatusUpdatedEventWhereInput + proposalStatusUpdates_some: ProposalStatusUpdatedEventWhereInput + proposalStatusUpdates_every: ProposalStatusUpdatedEventWhereInput + votes_none: ProposalVotedEventWhereInput + votes_some: ProposalVotedEventWhereInput + votes_every: ProposalVotedEventWhereInput + tags_none: TagWhereInput + tags_some: TagWhereInput + tags_every: TagWhereInput + proposalcancelledeventproposal_none: ProposalCancelledEventWhereInput + proposalcancelledeventproposal_some: ProposalCancelledEventWhereInput + proposalcancelledeventproposal_every: ProposalCancelledEventWhereInput + proposaldecisionmadeeventproposal_none: ProposalDecisionMadeEventWhereInput + proposaldecisionmadeeventproposal_some: ProposalDecisionMadeEventWhereInput + proposaldecisionmadeeventproposal_every: ProposalDecisionMadeEventWhereInput + proposalexecutedeventproposal_none: ProposalExecutedEventWhereInput + proposalexecutedeventproposal_some: ProposalExecutedEventWhereInput + proposalexecutedeventproposal_every: ProposalExecutedEventWhereInput + AND: [ProposalWhereInput!] + OR: [ProposalWhereInput!] + NOT: [ProposalWhereInput!] } -input BountyVetoedEventWhereUniqueInput { +input ProposalWhereUniqueInput { id: ID! } -input BountyVetoedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - bounty: ID! +input ProposalCreateInput { + title: String! + description: String! + details: JSONObject! + stakingAccount: String + creator: ID! + exactExecutionBlock: Float + councilApprovals: Float! + status: JSONObject! + isFinalized: Boolean + statusSetAtBlock: Float! + statusSetAtTime: DateTime! } -input BountyVetoedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - bounty: ID +input ProposalUpdateInput { + title: String + description: String + details: JSONObject + stakingAccount: String + creator: ID + exactExecutionBlock: Float + councilApprovals: Float + status: JSONObject + isFinalized: Boolean + statusSetAtBlock: Float + statusSetAtTime: DateTime } -input BountyMaxFundingReachedEventWhereInput { +input TagWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8479,52 +8643,107 @@ input BountyMaxFundingReachedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - bounty: BountyWhereInput - AND: [BountyMaxFundingReachedEventWhereInput!] - OR: [BountyMaxFundingReachedEventWhereInput!] - NOT: [BountyMaxFundingReachedEventWhereInput!] + name_eq: String + name_contains: String + name_startsWith: String + name_endsWith: String + name_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + type_eq: String + type_contains: String + type_startsWith: String + type_endsWith: String + type_in: [String!] + visibility_eq: Boolean + visibility_in: [Boolean!] + forumThreads_none: ForumThreadWhereInput + forumThreads_some: ForumThreadWhereInput + forumThreads_every: ForumThreadWhereInput + proposals_none: ProposalWhereInput + proposals_some: ProposalWhereInput + proposals_every: ProposalWhereInput + AND: [TagWhereInput!] + OR: [TagWhereInput!] + NOT: [TagWhereInput!] } -input BountyMaxFundingReachedEventWhereUniqueInput { +input TagWhereUniqueInput { id: ID! } -input BountyMaxFundingReachedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - bounty: ID! +input TagCreateInput { + name: String! + description: String! + type: String! + visibility: Boolean! } -input BountyMaxFundingReachedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - bounty: ID +input TagUpdateInput { + name: String + description: String + type: String + visibility: Boolean } -input BountyRemovedEventWhereInput { +input BountyEntrantWhitelistWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + phantom_eq: Int + phantom_gt: Int + phantom_gte: Int + phantom_lt: Int + phantom_lte: Int + phantom_in: [Int!] + members_none: MembershipWhereInput + members_some: MembershipWhereInput + members_every: MembershipWhereInput + bountyentrantWhitelist_none: BountyWhereInput + bountyentrantWhitelist_some: BountyWhereInput + bountyentrantWhitelist_every: BountyWhereInput + AND: [BountyEntrantWhitelistWhereInput!] + OR: [BountyEntrantWhitelistWhereInput!] + NOT: [BountyEntrantWhitelistWhereInput!] +} + +input BountyEntrantWhitelistWhereUniqueInput { + id: ID! +} + +input BountyEntrantWhitelistCreateInput { + phantom: Float +} + +input BountyEntrantWhitelistUpdateInput { + phantom: Float +} + +input BountyFundedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8568,33 +8787,33 @@ input BountyRemovedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - bounty: BountyWhereInput - AND: [BountyRemovedEventWhereInput!] - OR: [BountyRemovedEventWhereInput!] - NOT: [BountyRemovedEventWhereInput!] + contribution: BountyContributionWhereInput + AND: [BountyFundedEventWhereInput!] + OR: [BountyFundedEventWhereInput!] + NOT: [BountyFundedEventWhereInput!] } -input BountyRemovedEventWhereUniqueInput { +input BountyFundedEventWhereUniqueInput { id: ID! } -input BountyRemovedEventCreateInput { +input BountyFundedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - bounty: ID! + contribution: ID! } -input BountyRemovedEventUpdateInput { +input BountyFundedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - bounty: ID + contribution: ID } -input OracleJudgmentSubmittedEventWhereInput { +input BountyFundingWithdrawalEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8638,40 +8857,98 @@ input OracleJudgmentSubmittedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - bounty: BountyWhereInput - AND: [OracleJudgmentSubmittedEventWhereInput!] - OR: [OracleJudgmentSubmittedEventWhereInput!] - NOT: [OracleJudgmentSubmittedEventWhereInput!] + contribution: BountyContributionWhereInput + AND: [BountyFundingWithdrawalEventWhereInput!] + OR: [BountyFundingWithdrawalEventWhereInput!] + NOT: [BountyFundingWithdrawalEventWhereInput!] } -input OracleJudgmentSubmittedEventWhereUniqueInput { +input BountyFundingWithdrawalEventWhereUniqueInput { id: ID! } -input OracleJudgmentSubmittedEventCreateInput { +input BountyFundingWithdrawalEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - bounty: ID! - rationale: String + contribution: ID! } -input OracleJudgmentSubmittedEventUpdateInput { +input BountyFundingWithdrawalEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float + contribution: ID +} + +input BountyContributionWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + contributorId_eq: String + contributorId_contains: String + contributorId_startsWith: String + contributorId_endsWith: String + contributorId_in: [String!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + bounty: BountyWhereInput + contributor: MembershipWhereInput + bountyFundedEvents_none: BountyFundedEventWhereInput + bountyFundedEvents_some: BountyFundedEventWhereInput + bountyFundedEvents_every: BountyFundedEventWhereInput + withdrawnInEvent: BountyFundingWithdrawalEventWhereInput + AND: [BountyContributionWhereInput!] + OR: [BountyContributionWhereInput!] + NOT: [BountyContributionWhereInput!] +} + +input BountyContributionWhereUniqueInput { + id: ID! +} + +input BountyContributionCreateInput { + bounty: ID! + contributor: ID + contributorId: String + amount: String! +} + +input BountyContributionUpdateInput { bounty: ID - rationale: String + contributor: ID + contributorId: String + amount: String } -input BountyCreatorCherryWithdrawalEventWhereInput { +input WorkEntryAnnouncedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8715,33 +8992,33 @@ input BountyCreatorCherryWithdrawalEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - bounty: BountyWhereInput - AND: [BountyCreatorCherryWithdrawalEventWhereInput!] - OR: [BountyCreatorCherryWithdrawalEventWhereInput!] - NOT: [BountyCreatorCherryWithdrawalEventWhereInput!] + entry: BountyEntryWhereInput + AND: [WorkEntryAnnouncedEventWhereInput!] + OR: [WorkEntryAnnouncedEventWhereInput!] + NOT: [WorkEntryAnnouncedEventWhereInput!] } -input BountyCreatorCherryWithdrawalEventWhereUniqueInput { +input WorkEntryAnnouncedEventWhereUniqueInput { id: ID! } -input BountyCreatorCherryWithdrawalEventCreateInput { +input WorkEntryAnnouncedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - bounty: ID! + entry: ID! } -input BountyCreatorCherryWithdrawalEventUpdateInput { +input WorkEntryAnnouncedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - bounty: ID + entry: ID } -input BountyWhereInput { +input WorkEntryWithdrawnEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8766,124 +9043,52 @@ input BountyWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - title_eq: String - title_contains: String - title_startsWith: String - title_endsWith: String - title_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - bannerImageUri_eq: String - bannerImageUri_contains: String - bannerImageUri_startsWith: String - bannerImageUri_endsWith: String - bannerImageUri_in: [String!] - cherry_eq: BigInt - cherry_gt: BigInt - cherry_gte: BigInt - cherry_lt: BigInt - cherry_lte: BigInt - cherry_in: [BigInt!] - entrantStake_eq: BigInt - entrantStake_gt: BigInt - entrantStake_gte: BigInt - entrantStake_lt: BigInt - entrantStake_lte: BigInt - entrantStake_in: [BigInt!] - fundingType_json: JSONObject - workPeriod_eq: Int - workPeriod_gt: Int - workPeriod_gte: Int - workPeriod_lt: Int - workPeriod_lte: Int - workPeriod_in: [Int!] - judgingPeriod_eq: Int - judgingPeriod_gt: Int - judgingPeriod_gte: Int - judgingPeriod_lt: Int - judgingPeriod_lte: Int - judgingPeriod_in: [Int!] - stage_eq: BountyStage - stage_in: [BountyStage!] - totalFunding_eq: BigInt - totalFunding_gt: BigInt - totalFunding_gte: BigInt - totalFunding_lt: BigInt - totalFunding_lte: BigInt - totalFunding_in: [BigInt!] - isTerminated_eq: Boolean - isTerminated_in: [Boolean!] - creator: MembershipWhereInput - oracle: MembershipWhereInput - entrantWhitelist: BountyEntrantWhitelistWhereInput - discussionThread: ForumThreadWhereInput - contributions_none: BountyContributionWhereInput - contributions_some: BountyContributionWhereInput - contributions_every: BountyContributionWhereInput - entries_none: BountyEntryWhereInput - entries_some: BountyEntryWhereInput - entries_every: BountyEntryWhereInput - createdInEvent: BountyCreatedEventWhereInput - canceledEvent: BountyCanceledEventWhereInput - vetoedEvent: BountyVetoedEventWhereInput - maxFundingReachedEvent: BountyMaxFundingReachedEventWhereInput - removedInEvent: BountyRemovedEventWhereInput - judgment: OracleJudgmentSubmittedEventWhereInput - bountycreatorcherrywithdrawaleventbounty_none: BountyCreatorCherryWithdrawalEventWhereInput - bountycreatorcherrywithdrawaleventbounty_some: BountyCreatorCherryWithdrawalEventWhereInput - bountycreatorcherrywithdrawaleventbounty_every: BountyCreatorCherryWithdrawalEventWhereInput - worksubmittedeventbounty_none: WorkSubmittedEventWhereInput - worksubmittedeventbounty_some: WorkSubmittedEventWhereInput - worksubmittedeventbounty_every: WorkSubmittedEventWhereInput - AND: [BountyWhereInput!] - OR: [BountyWhereInput!] - NOT: [BountyWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + entry: BountyEntryWhereInput + AND: [WorkEntryWithdrawnEventWhereInput!] + OR: [WorkEntryWithdrawnEventWhereInput!] + NOT: [WorkEntryWithdrawnEventWhereInput!] } -input BountyWhereUniqueInput { +input WorkEntryWithdrawnEventWhereUniqueInput { id: ID! } -input BountyCreateInput { - title: String - description: String - bannerImageUri: String - cherry: String! - entrantStake: String! - creator: ID - oracle: ID - fundingType: JSONObject! - entrantWhitelist: ID - workPeriod: Float! - judgingPeriod: Float! - stage: BountyStage! - totalFunding: String! - discussionThread: ID - isTerminated: Boolean! +input WorkEntryWithdrawnEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + entry: ID! } -input BountyUpdateInput { - title: String - description: String - bannerImageUri: String - cherry: String - entrantStake: String - creator: ID - oracle: ID - fundingType: JSONObject - entrantWhitelist: ID - workPeriod: Float - judgingPeriod: Float - stage: BountyStage - totalFunding: String - discussionThread: ID - isTerminated: Boolean +input WorkEntryWithdrawnEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + entry: ID } -input ThreadDeletedEventWhereInput { +input WorkEntrySlashedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8927,33 +9132,33 @@ input ThreadDeletedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - thread: ForumThreadWhereInput - AND: [ThreadDeletedEventWhereInput!] - OR: [ThreadDeletedEventWhereInput!] - NOT: [ThreadDeletedEventWhereInput!] + entry: BountyEntryWhereInput + AND: [WorkEntrySlashedEventWhereInput!] + OR: [WorkEntrySlashedEventWhereInput!] + NOT: [WorkEntrySlashedEventWhereInput!] } -input ThreadDeletedEventWhereUniqueInput { +input WorkEntrySlashedEventWhereUniqueInput { id: ID! } -input ThreadDeletedEventCreateInput { +input WorkEntrySlashedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - thread: ID! + entry: ID! } -input ThreadDeletedEventUpdateInput { +input WorkEntrySlashedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - thread: ID + entry: ID } -input ThreadModeratedEventWhereInput { +input WorkSubmittedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8997,43 +9202,50 @@ input ThreadModeratedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - thread: ForumThreadWhereInput - actor: WorkerWhereInput - AND: [ThreadModeratedEventWhereInput!] - OR: [ThreadModeratedEventWhereInput!] - NOT: [ThreadModeratedEventWhereInput!] + title_eq: String + title_contains: String + title_startsWith: String + title_endsWith: String + title_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + bounty: BountyWhereInput + entry: BountyEntryWhereInput + AND: [WorkSubmittedEventWhereInput!] + OR: [WorkSubmittedEventWhereInput!] + NOT: [WorkSubmittedEventWhereInput!] } -input ThreadModeratedEventWhereUniqueInput { +input WorkSubmittedEventWhereUniqueInput { id: ID! } -input ThreadModeratedEventCreateInput { +input WorkSubmittedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - thread: ID! - rationale: String! - actor: ID! + bounty: ID! + entry: ID! + title: String + description: String } -input ThreadModeratedEventUpdateInput { +input WorkSubmittedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - thread: ID - rationale: String - actor: ID + bounty: ID + entry: ID + title: String + description: String } -input ForumThreadWhereInput { +input WorkEntrantFundsWithdrawnEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9058,82 +9270,119 @@ input ForumThreadWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - title_eq: String - title_contains: String - title_startsWith: String - title_endsWith: String - title_in: [String!] - visiblePostsCount_eq: Int - visiblePostsCount_gt: Int - visiblePostsCount_gte: Int - visiblePostsCount_lt: Int - visiblePostsCount_lte: Int - visiblePostsCount_in: [Int!] - isSticky_eq: Boolean - isSticky_in: [Boolean!] - status_json: JSONObject - isVisible_eq: Boolean - isVisible_in: [Boolean!] - author: MembershipWhereInput - category: ForumCategoryWhereInput - posts_none: ForumPostWhereInput - posts_some: ForumPostWhereInput - posts_every: ForumPostWhereInput - initialPost: ForumPostWhereInput - createdInEvent: ThreadCreatedEventWhereInput - metadataUpdates_none: ThreadMetadataUpdatedEventWhereInput - metadataUpdates_some: ThreadMetadataUpdatedEventWhereInput - metadataUpdates_every: ThreadMetadataUpdatedEventWhereInput - madeStickyInEvents_none: CategoryStickyThreadUpdateEventWhereInput - madeStickyInEvents_some: CategoryStickyThreadUpdateEventWhereInput - madeStickyInEvents_every: CategoryStickyThreadUpdateEventWhereInput - movedInEvents_none: ThreadMovedEventWhereInput - movedInEvents_some: ThreadMovedEventWhereInput - movedInEvents_every: ThreadMovedEventWhereInput - tags_none: ForumThreadTagWhereInput - tags_some: ForumThreadTagWhereInput - tags_every: ForumThreadTagWhereInput - bountydiscussionThread_none: BountyWhereInput - bountydiscussionThread_some: BountyWhereInput - bountydiscussionThread_every: BountyWhereInput - threaddeletedeventthread_none: ThreadDeletedEventWhereInput - threaddeletedeventthread_some: ThreadDeletedEventWhereInput - threaddeletedeventthread_every: ThreadDeletedEventWhereInput - threadmoderatedeventthread_none: ThreadModeratedEventWhereInput - threadmoderatedeventthread_some: ThreadModeratedEventWhereInput - threadmoderatedeventthread_every: ThreadModeratedEventWhereInput - AND: [ForumThreadWhereInput!] - OR: [ForumThreadWhereInput!] - NOT: [ForumThreadWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + entry: BountyEntryWhereInput + AND: [WorkEntrantFundsWithdrawnEventWhereInput!] + OR: [WorkEntrantFundsWithdrawnEventWhereInput!] + NOT: [WorkEntrantFundsWithdrawnEventWhereInput!] } -input ForumThreadWhereUniqueInput { +input WorkEntrantFundsWithdrawnEventWhereUniqueInput { id: ID! } -input ForumThreadCreateInput { - author: ID! - category: ID! - title: String! - initialPost: ID - visiblePostsCount: Float! - isSticky: Boolean! +input WorkEntrantFundsWithdrawnEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + entry: ID! +} + +input WorkEntrantFundsWithdrawnEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + entry: ID +} + +input BountyEntryWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + stakingAccount_eq: String + stakingAccount_contains: String + stakingAccount_startsWith: String + stakingAccount_endsWith: String + stakingAccount_in: [String!] + workSubmitted_eq: Boolean + workSubmitted_in: [Boolean!] + status_json: JSONObject + bounty: BountyWhereInput + worker: MembershipWhereInput + announcedInEvent: WorkEntryAnnouncedEventWhereInput + withdrawnInEvent: WorkEntryWithdrawnEventWhereInput + slashedInEvent: WorkEntrySlashedEventWhereInput + works_none: WorkSubmittedEventWhereInput + works_some: WorkSubmittedEventWhereInput + works_every: WorkSubmittedEventWhereInput + cashedOutInEvent: WorkEntrantFundsWithdrawnEventWhereInput + AND: [BountyEntryWhereInput!] + OR: [BountyEntryWhereInput!] + NOT: [BountyEntryWhereInput!] +} + +input BountyEntryWhereUniqueInput { + id: ID! +} + +input BountyEntryCreateInput { + bounty: ID! + worker: ID! + stakingAccount: String + workSubmitted: Boolean! status: JSONObject! - isVisible: Boolean! } -input ForumThreadUpdateInput { - author: ID - category: ID - title: String - initialPost: ID - visiblePostsCount: Float - isSticky: Boolean +input BountyEntryUpdateInput { + bounty: ID + worker: ID + stakingAccount: String + workSubmitted: Boolean status: JSONObject - isVisible: Boolean } -input CategoryCreatedEventWhereInput { +input BountyCreatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9177,33 +9426,33 @@ input CategoryCreatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - category: ForumCategoryWhereInput - AND: [CategoryCreatedEventWhereInput!] - OR: [CategoryCreatedEventWhereInput!] - NOT: [CategoryCreatedEventWhereInput!] + bounty: BountyWhereInput + AND: [BountyCreatedEventWhereInput!] + OR: [BountyCreatedEventWhereInput!] + NOT: [BountyCreatedEventWhereInput!] } -input CategoryCreatedEventWhereUniqueInput { +input BountyCreatedEventWhereUniqueInput { id: ID! } -input CategoryCreatedEventCreateInput { +input BountyCreatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - category: ID! + bounty: ID! } -input CategoryCreatedEventUpdateInput { +input BountyCreatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - category: ID + bounty: ID } -input CategoryArchivalStatusUpdatedEventWhereInput { +input BountyCanceledEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9247,40 +9496,33 @@ input CategoryArchivalStatusUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newArchivalStatus_eq: Boolean - newArchivalStatus_in: [Boolean!] - category: ForumCategoryWhereInput - actor: WorkerWhereInput - AND: [CategoryArchivalStatusUpdatedEventWhereInput!] - OR: [CategoryArchivalStatusUpdatedEventWhereInput!] - NOT: [CategoryArchivalStatusUpdatedEventWhereInput!] + bounty: BountyWhereInput + AND: [BountyCanceledEventWhereInput!] + OR: [BountyCanceledEventWhereInput!] + NOT: [BountyCanceledEventWhereInput!] } -input CategoryArchivalStatusUpdatedEventWhereUniqueInput { +input BountyCanceledEventWhereUniqueInput { id: ID! } -input CategoryArchivalStatusUpdatedEventCreateInput { +input BountyCanceledEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - category: ID! - newArchivalStatus: Boolean! - actor: ID! + bounty: ID! } -input CategoryArchivalStatusUpdatedEventUpdateInput { +input BountyCanceledEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - category: ID - newArchivalStatus: Boolean - actor: ID + bounty: ID } -input CategoryDeletedEventWhereInput { +input BountyVetoedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9324,36 +9566,33 @@ input CategoryDeletedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - category: ForumCategoryWhereInput - actor: WorkerWhereInput - AND: [CategoryDeletedEventWhereInput!] - OR: [CategoryDeletedEventWhereInput!] - NOT: [CategoryDeletedEventWhereInput!] + bounty: BountyWhereInput + AND: [BountyVetoedEventWhereInput!] + OR: [BountyVetoedEventWhereInput!] + NOT: [BountyVetoedEventWhereInput!] } -input CategoryDeletedEventWhereUniqueInput { +input BountyVetoedEventWhereUniqueInput { id: ID! } -input CategoryDeletedEventCreateInput { +input BountyVetoedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - category: ID! - actor: ID! + bounty: ID! } -input CategoryDeletedEventUpdateInput { +input BountyVetoedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - category: ID - actor: ID + bounty: ID } -input CategoryMembershipOfModeratorUpdatedEventWhereInput { +input BountyMaxFundingReachedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9397,40 +9636,33 @@ input CategoryMembershipOfModeratorUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newCanModerateValue_eq: Boolean - newCanModerateValue_in: [Boolean!] - moderator: WorkerWhereInput - category: ForumCategoryWhereInput - AND: [CategoryMembershipOfModeratorUpdatedEventWhereInput!] - OR: [CategoryMembershipOfModeratorUpdatedEventWhereInput!] - NOT: [CategoryMembershipOfModeratorUpdatedEventWhereInput!] + bounty: BountyWhereInput + AND: [BountyMaxFundingReachedEventWhereInput!] + OR: [BountyMaxFundingReachedEventWhereInput!] + NOT: [BountyMaxFundingReachedEventWhereInput!] } -input CategoryMembershipOfModeratorUpdatedEventWhereUniqueInput { +input BountyMaxFundingReachedEventWhereUniqueInput { id: ID! } -input CategoryMembershipOfModeratorUpdatedEventCreateInput { +input BountyMaxFundingReachedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - moderator: ID! - category: ID! - newCanModerateValue: Boolean! + bounty: ID! } -input CategoryMembershipOfModeratorUpdatedEventUpdateInput { +input BountyMaxFundingReachedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - moderator: ID - category: ID - newCanModerateValue: Boolean + bounty: ID } -input ForumCategoryWhereInput { +input BountyRemovedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9455,70 +9687,52 @@ input ForumCategoryWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - title_eq: String - title_contains: String - title_startsWith: String - title_endsWith: String - title_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - status_json: JSONObject - parent: ForumCategoryWhereInput - threads_none: ForumThreadWhereInput - threads_some: ForumThreadWhereInput - threads_every: ForumThreadWhereInput - moderators_none: WorkerWhereInput - moderators_some: WorkerWhereInput - moderators_every: WorkerWhereInput - createdInEvent: CategoryCreatedEventWhereInput - categoryarchivalstatusupdatedeventcategory_none: CategoryArchivalStatusUpdatedEventWhereInput - categoryarchivalstatusupdatedeventcategory_some: CategoryArchivalStatusUpdatedEventWhereInput - categoryarchivalstatusupdatedeventcategory_every: CategoryArchivalStatusUpdatedEventWhereInput - categorydeletedeventcategory_none: CategoryDeletedEventWhereInput - categorydeletedeventcategory_some: CategoryDeletedEventWhereInput - categorydeletedeventcategory_every: CategoryDeletedEventWhereInput - categorymembershipofmoderatorupdatedeventcategory_none: CategoryMembershipOfModeratorUpdatedEventWhereInput - categorymembershipofmoderatorupdatedeventcategory_some: CategoryMembershipOfModeratorUpdatedEventWhereInput - categorymembershipofmoderatorupdatedeventcategory_every: CategoryMembershipOfModeratorUpdatedEventWhereInput - categorystickythreadupdateeventcategory_none: CategoryStickyThreadUpdateEventWhereInput - categorystickythreadupdateeventcategory_some: CategoryStickyThreadUpdateEventWhereInput - categorystickythreadupdateeventcategory_every: CategoryStickyThreadUpdateEventWhereInput - forumcategoryparent_none: ForumCategoryWhereInput - forumcategoryparent_some: ForumCategoryWhereInput - forumcategoryparent_every: ForumCategoryWhereInput - threadmovedeventoldCategory_none: ThreadMovedEventWhereInput - threadmovedeventoldCategory_some: ThreadMovedEventWhereInput - threadmovedeventoldCategory_every: ThreadMovedEventWhereInput - threadmovedeventnewCategory_none: ThreadMovedEventWhereInput - threadmovedeventnewCategory_some: ThreadMovedEventWhereInput - threadmovedeventnewCategory_every: ThreadMovedEventWhereInput - AND: [ForumCategoryWhereInput!] - OR: [ForumCategoryWhereInput!] - NOT: [ForumCategoryWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + bounty: BountyWhereInput + AND: [BountyRemovedEventWhereInput!] + OR: [BountyRemovedEventWhereInput!] + NOT: [BountyRemovedEventWhereInput!] } -input ForumCategoryWhereUniqueInput { +input BountyRemovedEventWhereUniqueInput { id: ID! } -input ForumCategoryCreateInput { - parent: ID - title: String! - description: String! - status: JSONObject! +input BountyRemovedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + bounty: ID! } -input ForumCategoryUpdateInput { - parent: ID - title: String - description: String - status: JSONObject +input BountyRemovedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + bounty: ID } -input LeaderSetEventWhereInput { +input OracleJudgmentSubmittedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9562,36 +9776,40 @@ input LeaderSetEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - group: WorkingGroupWhereInput - worker: WorkerWhereInput - AND: [LeaderSetEventWhereInput!] - OR: [LeaderSetEventWhereInput!] - NOT: [LeaderSetEventWhereInput!] + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + bounty: BountyWhereInput + AND: [OracleJudgmentSubmittedEventWhereInput!] + OR: [OracleJudgmentSubmittedEventWhereInput!] + NOT: [OracleJudgmentSubmittedEventWhereInput!] } -input LeaderSetEventWhereUniqueInput { +input OracleJudgmentSubmittedEventWhereUniqueInput { id: ID! } -input LeaderSetEventCreateInput { +input OracleJudgmentSubmittedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - group: ID! - worker: ID + bounty: ID! + rationale: String } -input LeaderSetEventUpdateInput { +input OracleJudgmentSubmittedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - group: ID - worker: ID + bounty: ID + rationale: String } -input LeaderUnsetEventWhereInput { +input BountyCreatorCherryWithdrawalEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9635,36 +9853,175 @@ input LeaderUnsetEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - group: WorkingGroupWhereInput - leader: WorkerWhereInput - AND: [LeaderUnsetEventWhereInput!] - OR: [LeaderUnsetEventWhereInput!] - NOT: [LeaderUnsetEventWhereInput!] + bounty: BountyWhereInput + AND: [BountyCreatorCherryWithdrawalEventWhereInput!] + OR: [BountyCreatorCherryWithdrawalEventWhereInput!] + NOT: [BountyCreatorCherryWithdrawalEventWhereInput!] } -input LeaderUnsetEventWhereUniqueInput { +input BountyCreatorCherryWithdrawalEventWhereUniqueInput { id: ID! } -input LeaderUnsetEventCreateInput { +input BountyCreatorCherryWithdrawalEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - group: ID! - leader: ID! + bounty: ID! } -input LeaderUnsetEventUpdateInput { +input BountyCreatorCherryWithdrawalEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - group: ID - leader: ID + bounty: ID } -input MemberVerificationStatusUpdatedEventWhereInput { +input BountyWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + title_eq: String + title_contains: String + title_startsWith: String + title_endsWith: String + title_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + bannerImageUri_eq: String + bannerImageUri_contains: String + bannerImageUri_startsWith: String + bannerImageUri_endsWith: String + bannerImageUri_in: [String!] + cherry_eq: BigInt + cherry_gt: BigInt + cherry_gte: BigInt + cherry_lt: BigInt + cherry_lte: BigInt + cherry_in: [BigInt!] + entrantStake_eq: BigInt + entrantStake_gt: BigInt + entrantStake_gte: BigInt + entrantStake_lt: BigInt + entrantStake_lte: BigInt + entrantStake_in: [BigInt!] + fundingType_json: JSONObject + workPeriod_eq: Int + workPeriod_gt: Int + workPeriod_gte: Int + workPeriod_lt: Int + workPeriod_lte: Int + workPeriod_in: [Int!] + judgingPeriod_eq: Int + judgingPeriod_gt: Int + judgingPeriod_gte: Int + judgingPeriod_lt: Int + judgingPeriod_lte: Int + judgingPeriod_in: [Int!] + stage_eq: BountyStage + stage_in: [BountyStage!] + totalFunding_eq: BigInt + totalFunding_gt: BigInt + totalFunding_gte: BigInt + totalFunding_lt: BigInt + totalFunding_lte: BigInt + totalFunding_in: [BigInt!] + isTerminated_eq: Boolean + isTerminated_in: [Boolean!] + creator: MembershipWhereInput + oracle: MembershipWhereInput + entrantWhitelist: BountyEntrantWhitelistWhereInput + discussionThread: ForumThreadWhereInput + contributions_none: BountyContributionWhereInput + contributions_some: BountyContributionWhereInput + contributions_every: BountyContributionWhereInput + entries_none: BountyEntryWhereInput + entries_some: BountyEntryWhereInput + entries_every: BountyEntryWhereInput + createdInEvent: BountyCreatedEventWhereInput + canceledEvent: BountyCanceledEventWhereInput + vetoedEvent: BountyVetoedEventWhereInput + maxFundingReachedEvent: BountyMaxFundingReachedEventWhereInput + removedInEvent: BountyRemovedEventWhereInput + judgment: OracleJudgmentSubmittedEventWhereInput + bountycreatorcherrywithdrawaleventbounty_none: BountyCreatorCherryWithdrawalEventWhereInput + bountycreatorcherrywithdrawaleventbounty_some: BountyCreatorCherryWithdrawalEventWhereInput + bountycreatorcherrywithdrawaleventbounty_every: BountyCreatorCherryWithdrawalEventWhereInput + worksubmittedeventbounty_none: WorkSubmittedEventWhereInput + worksubmittedeventbounty_some: WorkSubmittedEventWhereInput + worksubmittedeventbounty_every: WorkSubmittedEventWhereInput + AND: [BountyWhereInput!] + OR: [BountyWhereInput!] + NOT: [BountyWhereInput!] +} + +input BountyWhereUniqueInput { + id: ID! +} + +input BountyCreateInput { + title: String + description: String + bannerImageUri: String + cherry: String! + entrantStake: String! + creator: ID + oracle: ID + fundingType: JSONObject! + entrantWhitelist: ID + workPeriod: Float! + judgingPeriod: Float! + stage: BountyStage! + totalFunding: String! + discussionThread: ID + isTerminated: Boolean! +} + +input BountyUpdateInput { + title: String + description: String + bannerImageUri: String + cherry: String + entrantStake: String + creator: ID + oracle: ID + fundingType: JSONObject + entrantWhitelist: ID + workPeriod: Float + judgingPeriod: Float + stage: BountyStage + totalFunding: String + discussionThread: ID + isTerminated: Boolean +} + +input ThreadDeletedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9708,40 +10065,33 @@ input MemberVerificationStatusUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - isVerified_eq: Boolean - isVerified_in: [Boolean!] - member: MembershipWhereInput - worker: WorkerWhereInput - AND: [MemberVerificationStatusUpdatedEventWhereInput!] - OR: [MemberVerificationStatusUpdatedEventWhereInput!] - NOT: [MemberVerificationStatusUpdatedEventWhereInput!] + thread: ForumThreadWhereInput + AND: [ThreadDeletedEventWhereInput!] + OR: [ThreadDeletedEventWhereInput!] + NOT: [ThreadDeletedEventWhereInput!] } -input MemberVerificationStatusUpdatedEventWhereUniqueInput { +input ThreadDeletedEventWhereUniqueInput { id: ID! } -input MemberVerificationStatusUpdatedEventCreateInput { +input ThreadDeletedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - member: ID! - worker: ID! - isVerified: Boolean! + thread: ID! } -input MemberVerificationStatusUpdatedEventUpdateInput { +input ThreadDeletedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - member: ID - worker: ID - isVerified: Boolean + thread: ID } -input NewMissedRewardLevelReachedEventWhereInput { +input ThreadModeratedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9785,44 +10135,146 @@ input NewMissedRewardLevelReachedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newMissedRewardAmount_eq: BigInt - newMissedRewardAmount_gt: BigInt - newMissedRewardAmount_gte: BigInt - newMissedRewardAmount_lt: BigInt - newMissedRewardAmount_lte: BigInt - newMissedRewardAmount_in: [BigInt!] - group: WorkingGroupWhereInput - worker: WorkerWhereInput - AND: [NewMissedRewardLevelReachedEventWhereInput!] - OR: [NewMissedRewardLevelReachedEventWhereInput!] - NOT: [NewMissedRewardLevelReachedEventWhereInput!] -} + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + thread: ForumThreadWhereInput + actor: WorkerWhereInput + AND: [ThreadModeratedEventWhereInput!] + OR: [ThreadModeratedEventWhereInput!] + NOT: [ThreadModeratedEventWhereInput!] +} -input NewMissedRewardLevelReachedEventWhereUniqueInput { +input ThreadModeratedEventWhereUniqueInput { id: ID! } -input NewMissedRewardLevelReachedEventCreateInput { +input ThreadModeratedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - group: ID! - worker: ID! - newMissedRewardAmount: String! + thread: ID! + rationale: String! + actor: ID! } -input NewMissedRewardLevelReachedEventUpdateInput { +input ThreadModeratedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - group: ID - worker: ID - newMissedRewardAmount: String + thread: ID + rationale: String + actor: ID } -input StakeDecreasedEventWhereInput { +input ForumThreadWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + title_eq: String + title_contains: String + title_startsWith: String + title_endsWith: String + title_in: [String!] + visiblePostsCount_eq: Int + visiblePostsCount_gt: Int + visiblePostsCount_gte: Int + visiblePostsCount_lt: Int + visiblePostsCount_lte: Int + visiblePostsCount_in: [Int!] + isSticky_eq: Boolean + isSticky_in: [Boolean!] + status_json: JSONObject + isVisible_eq: Boolean + isVisible_in: [Boolean!] + author: MembershipWhereInput + category: ForumCategoryWhereInput + posts_none: ForumPostWhereInput + posts_some: ForumPostWhereInput + posts_every: ForumPostWhereInput + initialPost: ForumPostWhereInput + createdInEvent: ThreadCreatedEventWhereInput + metadataUpdates_none: ThreadMetadataUpdatedEventWhereInput + metadataUpdates_some: ThreadMetadataUpdatedEventWhereInput + metadataUpdates_every: ThreadMetadataUpdatedEventWhereInput + madeStickyInEvents_none: CategoryStickyThreadUpdateEventWhereInput + madeStickyInEvents_some: CategoryStickyThreadUpdateEventWhereInput + madeStickyInEvents_every: CategoryStickyThreadUpdateEventWhereInput + movedInEvents_none: ThreadMovedEventWhereInput + movedInEvents_some: ThreadMovedEventWhereInput + movedInEvents_every: ThreadMovedEventWhereInput + tags_none: ForumThreadTagWhereInput + tags_some: ForumThreadTagWhereInput + tags_every: ForumThreadTagWhereInput + newTags_none: TagWhereInput + newTags_some: TagWhereInput + newTags_every: TagWhereInput + bountydiscussionThread_none: BountyWhereInput + bountydiscussionThread_some: BountyWhereInput + bountydiscussionThread_every: BountyWhereInput + threaddeletedeventthread_none: ThreadDeletedEventWhereInput + threaddeletedeventthread_some: ThreadDeletedEventWhereInput + threaddeletedeventthread_every: ThreadDeletedEventWhereInput + threadmoderatedeventthread_none: ThreadModeratedEventWhereInput + threadmoderatedeventthread_some: ThreadModeratedEventWhereInput + threadmoderatedeventthread_every: ThreadModeratedEventWhereInput + AND: [ForumThreadWhereInput!] + OR: [ForumThreadWhereInput!] + NOT: [ForumThreadWhereInput!] +} + +input ForumThreadWhereUniqueInput { + id: ID! +} + +input ForumThreadCreateInput { + author: ID! + category: ID! + title: String! + initialPost: ID + visiblePostsCount: Float! + isSticky: Boolean! + status: JSONObject! + isVisible: Boolean! +} + +input ForumThreadUpdateInput { + author: ID + category: ID + title: String + initialPost: ID + visiblePostsCount: Float + isSticky: Boolean + status: JSONObject + isVisible: Boolean +} + +input CategoryCreatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9866,44 +10318,33 @@ input StakeDecreasedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - group: WorkingGroupWhereInput - worker: WorkerWhereInput - AND: [StakeDecreasedEventWhereInput!] - OR: [StakeDecreasedEventWhereInput!] - NOT: [StakeDecreasedEventWhereInput!] + category: ForumCategoryWhereInput + AND: [CategoryCreatedEventWhereInput!] + OR: [CategoryCreatedEventWhereInput!] + NOT: [CategoryCreatedEventWhereInput!] } -input StakeDecreasedEventWhereUniqueInput { +input CategoryCreatedEventWhereUniqueInput { id: ID! } -input StakeDecreasedEventCreateInput { +input CategoryCreatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - group: ID! - worker: ID! - amount: String! + category: ID! } -input StakeDecreasedEventUpdateInput { +input CategoryCreatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - group: ID - worker: ID - amount: String + category: ID } -input StakeIncreasedEventWhereInput { +input CategoryArchivalStatusUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9947,44 +10388,40 @@ input StakeIncreasedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - group: WorkingGroupWhereInput - worker: WorkerWhereInput - AND: [StakeIncreasedEventWhereInput!] - OR: [StakeIncreasedEventWhereInput!] - NOT: [StakeIncreasedEventWhereInput!] + newArchivalStatus_eq: Boolean + newArchivalStatus_in: [Boolean!] + category: ForumCategoryWhereInput + actor: WorkerWhereInput + AND: [CategoryArchivalStatusUpdatedEventWhereInput!] + OR: [CategoryArchivalStatusUpdatedEventWhereInput!] + NOT: [CategoryArchivalStatusUpdatedEventWhereInput!] } -input StakeIncreasedEventWhereUniqueInput { +input CategoryArchivalStatusUpdatedEventWhereUniqueInput { id: ID! } -input StakeIncreasedEventCreateInput { +input CategoryArchivalStatusUpdatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - group: ID! - worker: ID! - amount: String! + category: ID! + newArchivalStatus: Boolean! + actor: ID! } -input StakeIncreasedEventUpdateInput { +input CategoryArchivalStatusUpdatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - group: ID - worker: ID - amount: String + category: ID + newArchivalStatus: Boolean + actor: ID } -input TerminatedLeaderEventWhereInput { +input CategoryDeletedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -10028,51 +10465,36 @@ input TerminatedLeaderEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - penalty_eq: BigInt - penalty_gt: BigInt - penalty_gte: BigInt - penalty_lt: BigInt - penalty_lte: BigInt - penalty_in: [BigInt!] - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - group: WorkingGroupWhereInput - worker: WorkerWhereInput - AND: [TerminatedLeaderEventWhereInput!] - OR: [TerminatedLeaderEventWhereInput!] - NOT: [TerminatedLeaderEventWhereInput!] + category: ForumCategoryWhereInput + actor: WorkerWhereInput + AND: [CategoryDeletedEventWhereInput!] + OR: [CategoryDeletedEventWhereInput!] + NOT: [CategoryDeletedEventWhereInput!] } -input TerminatedLeaderEventWhereUniqueInput { +input CategoryDeletedEventWhereUniqueInput { id: ID! } -input TerminatedLeaderEventCreateInput { +input CategoryDeletedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - group: ID! - worker: ID! - penalty: String - rationale: String + category: ID! + actor: ID! } -input TerminatedLeaderEventUpdateInput { +input CategoryDeletedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - group: ID - worker: ID - penalty: String - rationale: String + category: ID + actor: ID } -input TerminatedWorkerEventWhereInput { +input CategoryMembershipOfModeratorUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -10116,51 +10538,128 @@ input TerminatedWorkerEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - penalty_eq: BigInt - penalty_gt: BigInt - penalty_gte: BigInt - penalty_lt: BigInt - penalty_lte: BigInt - penalty_in: [BigInt!] - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - group: WorkingGroupWhereInput - worker: WorkerWhereInput - AND: [TerminatedWorkerEventWhereInput!] - OR: [TerminatedWorkerEventWhereInput!] - NOT: [TerminatedWorkerEventWhereInput!] + newCanModerateValue_eq: Boolean + newCanModerateValue_in: [Boolean!] + moderator: WorkerWhereInput + category: ForumCategoryWhereInput + AND: [CategoryMembershipOfModeratorUpdatedEventWhereInput!] + OR: [CategoryMembershipOfModeratorUpdatedEventWhereInput!] + NOT: [CategoryMembershipOfModeratorUpdatedEventWhereInput!] } -input TerminatedWorkerEventWhereUniqueInput { +input CategoryMembershipOfModeratorUpdatedEventWhereUniqueInput { id: ID! } -input TerminatedWorkerEventCreateInput { +input CategoryMembershipOfModeratorUpdatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - group: ID! - worker: ID! - penalty: String - rationale: String + moderator: ID! + category: ID! + newCanModerateValue: Boolean! } -input TerminatedWorkerEventUpdateInput { +input CategoryMembershipOfModeratorUpdatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - group: ID - worker: ID - penalty: String - rationale: String + moderator: ID + category: ID + newCanModerateValue: Boolean } -input WorkerExitedEventWhereInput { +input ForumCategoryWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + title_eq: String + title_contains: String + title_startsWith: String + title_endsWith: String + title_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + status_json: JSONObject + parent: ForumCategoryWhereInput + threads_none: ForumThreadWhereInput + threads_some: ForumThreadWhereInput + threads_every: ForumThreadWhereInput + moderators_none: WorkerWhereInput + moderators_some: WorkerWhereInput + moderators_every: WorkerWhereInput + createdInEvent: CategoryCreatedEventWhereInput + categoryarchivalstatusupdatedeventcategory_none: CategoryArchivalStatusUpdatedEventWhereInput + categoryarchivalstatusupdatedeventcategory_some: CategoryArchivalStatusUpdatedEventWhereInput + categoryarchivalstatusupdatedeventcategory_every: CategoryArchivalStatusUpdatedEventWhereInput + categorydeletedeventcategory_none: CategoryDeletedEventWhereInput + categorydeletedeventcategory_some: CategoryDeletedEventWhereInput + categorydeletedeventcategory_every: CategoryDeletedEventWhereInput + categorymembershipofmoderatorupdatedeventcategory_none: CategoryMembershipOfModeratorUpdatedEventWhereInput + categorymembershipofmoderatorupdatedeventcategory_some: CategoryMembershipOfModeratorUpdatedEventWhereInput + categorymembershipofmoderatorupdatedeventcategory_every: CategoryMembershipOfModeratorUpdatedEventWhereInput + categorystickythreadupdateeventcategory_none: CategoryStickyThreadUpdateEventWhereInput + categorystickythreadupdateeventcategory_some: CategoryStickyThreadUpdateEventWhereInput + categorystickythreadupdateeventcategory_every: CategoryStickyThreadUpdateEventWhereInput + forumcategoryparent_none: ForumCategoryWhereInput + forumcategoryparent_some: ForumCategoryWhereInput + forumcategoryparent_every: ForumCategoryWhereInput + threadmovedeventoldCategory_none: ThreadMovedEventWhereInput + threadmovedeventoldCategory_some: ThreadMovedEventWhereInput + threadmovedeventoldCategory_every: ThreadMovedEventWhereInput + threadmovedeventnewCategory_none: ThreadMovedEventWhereInput + threadmovedeventnewCategory_some: ThreadMovedEventWhereInput + threadmovedeventnewCategory_every: ThreadMovedEventWhereInput + AND: [ForumCategoryWhereInput!] + OR: [ForumCategoryWhereInput!] + NOT: [ForumCategoryWhereInput!] +} + +input ForumCategoryWhereUniqueInput { + id: ID! +} + +input ForumCategoryCreateInput { + parent: ID + title: String! + description: String! + status: JSONObject! +} + +input ForumCategoryUpdateInput { + parent: ID + title: String + description: String + status: JSONObject +} + +input LeaderSetEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -10206,25 +10705,25 @@ input WorkerExitedEventWhereInput { indexInBlock_in: [Int!] group: WorkingGroupWhereInput worker: WorkerWhereInput - AND: [WorkerExitedEventWhereInput!] - OR: [WorkerExitedEventWhereInput!] - NOT: [WorkerExitedEventWhereInput!] + AND: [LeaderSetEventWhereInput!] + OR: [LeaderSetEventWhereInput!] + NOT: [LeaderSetEventWhereInput!] } -input WorkerExitedEventWhereUniqueInput { +input LeaderSetEventWhereUniqueInput { id: ID! } -input WorkerExitedEventCreateInput { +input LeaderSetEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! group: ID! - worker: ID! + worker: ID } -input WorkerExitedEventUpdateInput { +input LeaderSetEventUpdateInput { inExtrinsic: String inBlock: Float network: Network @@ -10233,7 +10732,7 @@ input WorkerExitedEventUpdateInput { worker: ID } -input WorkerRewardAccountUpdatedEventWhereInput { +input LeaderUnsetEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -10277,43 +10776,36 @@ input WorkerRewardAccountUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newRewardAccount_eq: String - newRewardAccount_contains: String - newRewardAccount_startsWith: String - newRewardAccount_endsWith: String - newRewardAccount_in: [String!] group: WorkingGroupWhereInput - worker: WorkerWhereInput - AND: [WorkerRewardAccountUpdatedEventWhereInput!] - OR: [WorkerRewardAccountUpdatedEventWhereInput!] - NOT: [WorkerRewardAccountUpdatedEventWhereInput!] + leader: WorkerWhereInput + AND: [LeaderUnsetEventWhereInput!] + OR: [LeaderUnsetEventWhereInput!] + NOT: [LeaderUnsetEventWhereInput!] } -input WorkerRewardAccountUpdatedEventWhereUniqueInput { +input LeaderUnsetEventWhereUniqueInput { id: ID! } -input WorkerRewardAccountUpdatedEventCreateInput { +input LeaderUnsetEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! group: ID! - worker: ID! - newRewardAccount: String! + leader: ID! } -input WorkerRewardAccountUpdatedEventUpdateInput { +input LeaderUnsetEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float group: ID - worker: ID - newRewardAccount: String + leader: ID } -input WorkerRewardAmountUpdatedEventWhereInput { +input MemberVerificationStatusUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -10357,44 +10849,40 @@ input WorkerRewardAmountUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newRewardPerBlock_eq: BigInt - newRewardPerBlock_gt: BigInt - newRewardPerBlock_gte: BigInt - newRewardPerBlock_lt: BigInt - newRewardPerBlock_lte: BigInt - newRewardPerBlock_in: [BigInt!] - group: WorkingGroupWhereInput + isVerified_eq: Boolean + isVerified_in: [Boolean!] + member: MembershipWhereInput worker: WorkerWhereInput - AND: [WorkerRewardAmountUpdatedEventWhereInput!] - OR: [WorkerRewardAmountUpdatedEventWhereInput!] - NOT: [WorkerRewardAmountUpdatedEventWhereInput!] + AND: [MemberVerificationStatusUpdatedEventWhereInput!] + OR: [MemberVerificationStatusUpdatedEventWhereInput!] + NOT: [MemberVerificationStatusUpdatedEventWhereInput!] } -input WorkerRewardAmountUpdatedEventWhereUniqueInput { +input MemberVerificationStatusUpdatedEventWhereUniqueInput { id: ID! } -input WorkerRewardAmountUpdatedEventCreateInput { +input MemberVerificationStatusUpdatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - group: ID! + member: ID! worker: ID! - newRewardPerBlock: String! + isVerified: Boolean! } -input WorkerRewardAmountUpdatedEventUpdateInput { +input MemberVerificationStatusUpdatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - group: ID + member: ID worker: ID - newRewardPerBlock: String + isVerified: Boolean } -input WorkerRoleAccountUpdatedEventWhereInput { +input NewMissedRewardLevelReachedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -10438,43 +10926,44 @@ input WorkerRoleAccountUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newRoleAccount_eq: String - newRoleAccount_contains: String - newRoleAccount_startsWith: String - newRoleAccount_endsWith: String - newRoleAccount_in: [String!] + newMissedRewardAmount_eq: BigInt + newMissedRewardAmount_gt: BigInt + newMissedRewardAmount_gte: BigInt + newMissedRewardAmount_lt: BigInt + newMissedRewardAmount_lte: BigInt + newMissedRewardAmount_in: [BigInt!] group: WorkingGroupWhereInput worker: WorkerWhereInput - AND: [WorkerRoleAccountUpdatedEventWhereInput!] - OR: [WorkerRoleAccountUpdatedEventWhereInput!] - NOT: [WorkerRoleAccountUpdatedEventWhereInput!] + AND: [NewMissedRewardLevelReachedEventWhereInput!] + OR: [NewMissedRewardLevelReachedEventWhereInput!] + NOT: [NewMissedRewardLevelReachedEventWhereInput!] } -input WorkerRoleAccountUpdatedEventWhereUniqueInput { +input NewMissedRewardLevelReachedEventWhereUniqueInput { id: ID! } -input WorkerRoleAccountUpdatedEventCreateInput { +input NewMissedRewardLevelReachedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! group: ID! worker: ID! - newRoleAccount: String! + newMissedRewardAmount: String! } -input WorkerRoleAccountUpdatedEventUpdateInput { +input NewMissedRewardLevelReachedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float group: ID worker: ID - newRoleAccount: String + newMissedRewardAmount: String } -input WorkerStartedLeavingEventWhereInput { +input StakeDecreasedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -10518,1048 +11007,44 @@ input WorkerStartedLeavingEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] group: WorkingGroupWhereInput worker: WorkerWhereInput - AND: [WorkerStartedLeavingEventWhereInput!] - OR: [WorkerStartedLeavingEventWhereInput!] - NOT: [WorkerStartedLeavingEventWhereInput!] + AND: [StakeDecreasedEventWhereInput!] + OR: [StakeDecreasedEventWhereInput!] + NOT: [StakeDecreasedEventWhereInput!] } -input WorkerStartedLeavingEventWhereUniqueInput { +input StakeDecreasedEventWhereUniqueInput { id: ID! } -input WorkerStartedLeavingEventCreateInput { +input StakeDecreasedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! group: ID! worker: ID! - rationale: String + amount: String! } -input WorkerStartedLeavingEventUpdateInput { +input StakeDecreasedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float group: ID worker: ID - rationale: String + amount: String } -input WorkerWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - runtimeId_eq: Int - runtimeId_gt: Int - runtimeId_gte: Int - runtimeId_lt: Int - runtimeId_lte: Int - runtimeId_in: [Int!] - groupId_eq: String - groupId_contains: String - groupId_startsWith: String - groupId_endsWith: String - groupId_in: [String!] - roleAccount_eq: String - roleAccount_contains: String - roleAccount_startsWith: String - roleAccount_endsWith: String - roleAccount_in: [String!] - rewardAccount_eq: String - rewardAccount_contains: String - rewardAccount_startsWith: String - rewardAccount_endsWith: String - rewardAccount_in: [String!] - stakeAccount_eq: String - stakeAccount_contains: String - stakeAccount_startsWith: String - stakeAccount_endsWith: String - stakeAccount_in: [String!] - status_json: JSONObject - isLead_eq: Boolean - isLead_in: [Boolean!] - isActive_eq: Boolean - isActive_in: [Boolean!] - stake_eq: BigInt - stake_gt: BigInt - stake_gte: BigInt - stake_lt: BigInt - stake_lte: BigInt - stake_in: [BigInt!] - rewardPerBlock_eq: BigInt - rewardPerBlock_gt: BigInt - rewardPerBlock_gte: BigInt - rewardPerBlock_lt: BigInt - rewardPerBlock_lte: BigInt - rewardPerBlock_in: [BigInt!] - missingRewardAmount_eq: BigInt - missingRewardAmount_gt: BigInt - missingRewardAmount_gte: BigInt - missingRewardAmount_lt: BigInt - missingRewardAmount_lte: BigInt - missingRewardAmount_in: [BigInt!] - storage_eq: String - storage_contains: String - storage_startsWith: String - storage_endsWith: String - storage_in: [String!] - group: WorkingGroupWhereInput - membership: MembershipWhereInput - payouts_none: RewardPaidEventWhereInput - payouts_some: RewardPaidEventWhereInput - payouts_every: RewardPaidEventWhereInput - slashes_none: StakeSlashedEventWhereInput - slashes_some: StakeSlashedEventWhereInput - slashes_every: StakeSlashedEventWhereInput - entry: OpeningFilledEventWhereInput - application: WorkingGroupApplicationWhereInput - managedForumCategories_none: ForumCategoryWhereInput - managedForumCategories_some: ForumCategoryWhereInput - managedForumCategories_every: ForumCategoryWhereInput - categoryarchivalstatusupdatedeventactor_none: CategoryArchivalStatusUpdatedEventWhereInput - categoryarchivalstatusupdatedeventactor_some: CategoryArchivalStatusUpdatedEventWhereInput - categoryarchivalstatusupdatedeventactor_every: CategoryArchivalStatusUpdatedEventWhereInput - categorydeletedeventactor_none: CategoryDeletedEventWhereInput - categorydeletedeventactor_some: CategoryDeletedEventWhereInput - categorydeletedeventactor_every: CategoryDeletedEventWhereInput - categorymembershipofmoderatorupdatedeventmoderator_none: CategoryMembershipOfModeratorUpdatedEventWhereInput - categorymembershipofmoderatorupdatedeventmoderator_some: CategoryMembershipOfModeratorUpdatedEventWhereInput - categorymembershipofmoderatorupdatedeventmoderator_every: CategoryMembershipOfModeratorUpdatedEventWhereInput - categorystickythreadupdateeventactor_none: CategoryStickyThreadUpdateEventWhereInput - categorystickythreadupdateeventactor_some: CategoryStickyThreadUpdateEventWhereInput - categorystickythreadupdateeventactor_every: CategoryStickyThreadUpdateEventWhereInput - leaderseteventworker_none: LeaderSetEventWhereInput - leaderseteventworker_some: LeaderSetEventWhereInput - leaderseteventworker_every: LeaderSetEventWhereInput - leaderunseteventleader_none: LeaderUnsetEventWhereInput - leaderunseteventleader_some: LeaderUnsetEventWhereInput - leaderunseteventleader_every: LeaderUnsetEventWhereInput - memberverificationstatusupdatedeventworker_none: MemberVerificationStatusUpdatedEventWhereInput - memberverificationstatusupdatedeventworker_some: MemberVerificationStatusUpdatedEventWhereInput - memberverificationstatusupdatedeventworker_every: MemberVerificationStatusUpdatedEventWhereInput - newmissedrewardlevelreachedeventworker_none: NewMissedRewardLevelReachedEventWhereInput - newmissedrewardlevelreachedeventworker_some: NewMissedRewardLevelReachedEventWhereInput - newmissedrewardlevelreachedeventworker_every: NewMissedRewardLevelReachedEventWhereInput - postmoderatedeventactor_none: PostModeratedEventWhereInput - postmoderatedeventactor_some: PostModeratedEventWhereInput - postmoderatedeventactor_every: PostModeratedEventWhereInput - stakedecreasedeventworker_none: StakeDecreasedEventWhereInput - stakedecreasedeventworker_some: StakeDecreasedEventWhereInput - stakedecreasedeventworker_every: StakeDecreasedEventWhereInput - stakeincreasedeventworker_none: StakeIncreasedEventWhereInput - stakeincreasedeventworker_some: StakeIncreasedEventWhereInput - stakeincreasedeventworker_every: StakeIncreasedEventWhereInput - terminatedleadereventworker_none: TerminatedLeaderEventWhereInput - terminatedleadereventworker_some: TerminatedLeaderEventWhereInput - terminatedleadereventworker_every: TerminatedLeaderEventWhereInput - terminatedworkereventworker_none: TerminatedWorkerEventWhereInput - terminatedworkereventworker_some: TerminatedWorkerEventWhereInput - terminatedworkereventworker_every: TerminatedWorkerEventWhereInput - threadmoderatedeventactor_none: ThreadModeratedEventWhereInput - threadmoderatedeventactor_some: ThreadModeratedEventWhereInput - threadmoderatedeventactor_every: ThreadModeratedEventWhereInput - threadmovedeventactor_none: ThreadMovedEventWhereInput - threadmovedeventactor_some: ThreadMovedEventWhereInput - threadmovedeventactor_every: ThreadMovedEventWhereInput - workerexitedeventworker_none: WorkerExitedEventWhereInput - workerexitedeventworker_some: WorkerExitedEventWhereInput - workerexitedeventworker_every: WorkerExitedEventWhereInput - workerrewardaccountupdatedeventworker_none: WorkerRewardAccountUpdatedEventWhereInput - workerrewardaccountupdatedeventworker_some: WorkerRewardAccountUpdatedEventWhereInput - workerrewardaccountupdatedeventworker_every: WorkerRewardAccountUpdatedEventWhereInput - workerrewardamountupdatedeventworker_none: WorkerRewardAmountUpdatedEventWhereInput - workerrewardamountupdatedeventworker_some: WorkerRewardAmountUpdatedEventWhereInput - workerrewardamountupdatedeventworker_every: WorkerRewardAmountUpdatedEventWhereInput - workerroleaccountupdatedeventworker_none: WorkerRoleAccountUpdatedEventWhereInput - workerroleaccountupdatedeventworker_some: WorkerRoleAccountUpdatedEventWhereInput - workerroleaccountupdatedeventworker_every: WorkerRoleAccountUpdatedEventWhereInput - workerstartedleavingeventworker_none: WorkerStartedLeavingEventWhereInput - workerstartedleavingeventworker_some: WorkerStartedLeavingEventWhereInput - workerstartedleavingeventworker_every: WorkerStartedLeavingEventWhereInput - workinggroupleader_none: WorkingGroupWhereInput - workinggroupleader_some: WorkingGroupWhereInput - workinggroupleader_every: WorkingGroupWhereInput - AND: [WorkerWhereInput!] - OR: [WorkerWhereInput!] - NOT: [WorkerWhereInput!] -} - -input WorkerWhereUniqueInput { - id: ID! -} - -input WorkerCreateInput { - runtimeId: Float! - group: ID! - groupId: String! - membership: ID! - roleAccount: String! - rewardAccount: String! - stakeAccount: String! - status: JSONObject! - isLead: Boolean! - isActive: Boolean! - stake: String! - rewardPerBlock: String! - missingRewardAmount: String - entry: ID! - application: ID! - storage: String -} - -input WorkerUpdateInput { - runtimeId: Float - group: ID - groupId: String - membership: ID - roleAccount: String - rewardAccount: String - stakeAccount: String - status: JSONObject - isLead: Boolean - isActive: Boolean - stake: String - rewardPerBlock: String - missingRewardAmount: String - entry: ID - application: ID - storage: String -} - -input WorkingGroupApplicationWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - runtimeId_eq: Int - runtimeId_gt: Int - runtimeId_gte: Int - runtimeId_lt: Int - runtimeId_lte: Int - runtimeId_in: [Int!] - stake_eq: BigInt - stake_gt: BigInt - stake_gte: BigInt - stake_lt: BigInt - stake_lte: BigInt - stake_in: [BigInt!] - roleAccount_eq: String - roleAccount_contains: String - roleAccount_startsWith: String - roleAccount_endsWith: String - roleAccount_in: [String!] - rewardAccount_eq: String - rewardAccount_contains: String - rewardAccount_startsWith: String - rewardAccount_endsWith: String - rewardAccount_in: [String!] - stakingAccount_eq: String - stakingAccount_contains: String - stakingAccount_startsWith: String - stakingAccount_endsWith: String - stakingAccount_in: [String!] - status_json: JSONObject - opening: WorkingGroupOpeningWhereInput - applicant: MembershipWhereInput - answers_none: ApplicationFormQuestionAnswerWhereInput - answers_some: ApplicationFormQuestionAnswerWhereInput - answers_every: ApplicationFormQuestionAnswerWhereInput - createdInEvent: AppliedOnOpeningEventWhereInput - applicationwithdrawneventapplication_none: ApplicationWithdrawnEventWhereInput - applicationwithdrawneventapplication_some: ApplicationWithdrawnEventWhereInput - applicationwithdrawneventapplication_every: ApplicationWithdrawnEventWhereInput - workerapplication_none: WorkerWhereInput - workerapplication_some: WorkerWhereInput - workerapplication_every: WorkerWhereInput - AND: [WorkingGroupApplicationWhereInput!] - OR: [WorkingGroupApplicationWhereInput!] - NOT: [WorkingGroupApplicationWhereInput!] -} - -input WorkingGroupApplicationWhereUniqueInput { - id: ID! -} - -input WorkingGroupApplicationCreateInput { - runtimeId: Float! - opening: ID! - applicant: ID! - stake: String! - roleAccount: String! - rewardAccount: String! - stakingAccount: String! - status: JSONObject! -} - -input WorkingGroupApplicationUpdateInput { - runtimeId: Float - opening: ID - applicant: ID - stake: String - roleAccount: String - rewardAccount: String - stakingAccount: String - status: JSONObject -} - -input ApplicationFormQuestionAnswerWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - answer_eq: String - answer_contains: String - answer_startsWith: String - answer_endsWith: String - answer_in: [String!] - application: WorkingGroupApplicationWhereInput - question: ApplicationFormQuestionWhereInput - AND: [ApplicationFormQuestionAnswerWhereInput!] - OR: [ApplicationFormQuestionAnswerWhereInput!] - NOT: [ApplicationFormQuestionAnswerWhereInput!] -} - -input ApplicationFormQuestionAnswerWhereUniqueInput { - id: ID! -} - -input ApplicationFormQuestionAnswerCreateInput { - application: ID! - question: ID! - answer: String! -} - -input ApplicationFormQuestionAnswerUpdateInput { - application: ID - question: ID - answer: String -} - -input ApplicationFormQuestionWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - question_eq: String - question_contains: String - question_startsWith: String - question_endsWith: String - question_in: [String!] - type_eq: ApplicationFormQuestionType - type_in: [ApplicationFormQuestionType!] - index_eq: Int - index_gt: Int - index_gte: Int - index_lt: Int - index_lte: Int - index_in: [Int!] - openingMetadata: WorkingGroupOpeningMetadataWhereInput - applicationformquestionanswerquestion_none: ApplicationFormQuestionAnswerWhereInput - applicationformquestionanswerquestion_some: ApplicationFormQuestionAnswerWhereInput - applicationformquestionanswerquestion_every: ApplicationFormQuestionAnswerWhereInput - AND: [ApplicationFormQuestionWhereInput!] - OR: [ApplicationFormQuestionWhereInput!] - NOT: [ApplicationFormQuestionWhereInput!] -} - -input ApplicationFormQuestionWhereUniqueInput { - id: ID! -} - -input ApplicationFormQuestionCreateInput { - openingMetadata: ID! - question: String - type: ApplicationFormQuestionType! - index: Float! -} - -input ApplicationFormQuestionUpdateInput { - openingMetadata: ID - question: String - type: ApplicationFormQuestionType - index: Float -} - -input WorkingGroupOpeningMetadataWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - originallyValid_eq: Boolean - originallyValid_in: [Boolean!] - title_eq: String - title_contains: String - title_startsWith: String - title_endsWith: String - title_in: [String!] - shortDescription_eq: String - shortDescription_contains: String - shortDescription_startsWith: String - shortDescription_endsWith: String - shortDescription_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - hiringLimit_eq: Int - hiringLimit_gt: Int - hiringLimit_gte: Int - hiringLimit_lt: Int - hiringLimit_lte: Int - hiringLimit_in: [Int!] - expectedEnding_eq: DateTime - expectedEnding_lt: DateTime - expectedEnding_lte: DateTime - expectedEnding_gt: DateTime - expectedEnding_gte: DateTime - applicationDetails_eq: String - applicationDetails_contains: String - applicationDetails_startsWith: String - applicationDetails_endsWith: String - applicationDetails_in: [String!] - applicationFormQuestions_none: ApplicationFormQuestionWhereInput - applicationFormQuestions_some: ApplicationFormQuestionWhereInput - applicationFormQuestions_every: ApplicationFormQuestionWhereInput - upcomingworkinggroupopeningmetadata_none: UpcomingWorkingGroupOpeningWhereInput - upcomingworkinggroupopeningmetadata_some: UpcomingWorkingGroupOpeningWhereInput - upcomingworkinggroupopeningmetadata_every: UpcomingWorkingGroupOpeningWhereInput - workinggroupopeningmetadata_none: WorkingGroupOpeningWhereInput - workinggroupopeningmetadata_some: WorkingGroupOpeningWhereInput - workinggroupopeningmetadata_every: WorkingGroupOpeningWhereInput - AND: [WorkingGroupOpeningMetadataWhereInput!] - OR: [WorkingGroupOpeningMetadataWhereInput!] - NOT: [WorkingGroupOpeningMetadataWhereInput!] -} - -input WorkingGroupOpeningMetadataWhereUniqueInput { - id: ID! -} - -input WorkingGroupOpeningMetadataCreateInput { - originallyValid: Boolean! - title: String - shortDescription: String - description: String - hiringLimit: Float - expectedEnding: DateTime - applicationDetails: String -} - -input WorkingGroupOpeningMetadataUpdateInput { - originallyValid: Boolean - title: String - shortDescription: String - description: String - hiringLimit: Float - expectedEnding: DateTime - applicationDetails: String -} - -input UpcomingWorkingGroupOpeningWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - expectedStart_eq: DateTime - expectedStart_lt: DateTime - expectedStart_lte: DateTime - expectedStart_gt: DateTime - expectedStart_gte: DateTime - stakeAmount_eq: BigInt - stakeAmount_gt: BigInt - stakeAmount_gte: BigInt - stakeAmount_lt: BigInt - stakeAmount_lte: BigInt - stakeAmount_in: [BigInt!] - rewardPerBlock_eq: BigInt - rewardPerBlock_gt: BigInt - rewardPerBlock_gte: BigInt - rewardPerBlock_lt: BigInt - rewardPerBlock_lte: BigInt - rewardPerBlock_in: [BigInt!] - createdInEvent: StatusTextChangedEventWhereInput - group: WorkingGroupWhereInput - metadata: WorkingGroupOpeningMetadataWhereInput - AND: [UpcomingWorkingGroupOpeningWhereInput!] - OR: [UpcomingWorkingGroupOpeningWhereInput!] - NOT: [UpcomingWorkingGroupOpeningWhereInput!] -} - -input UpcomingWorkingGroupOpeningWhereUniqueInput { - id: ID! -} - -input UpcomingWorkingGroupOpeningCreateInput { - createdInEvent: ID! - group: ID! - expectedStart: DateTime - stakeAmount: String - rewardPerBlock: String - metadata: ID! -} - -input UpcomingWorkingGroupOpeningUpdateInput { - createdInEvent: ID - group: ID - expectedStart: DateTime - stakeAmount: String - rewardPerBlock: String - metadata: ID -} - -input StatusTextChangedEventWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - metadata_eq: String - metadata_contains: String - metadata_startsWith: String - metadata_endsWith: String - metadata_in: [String!] - result_json: JSONObject - group: WorkingGroupWhereInput - upcomingworkinggroupopeningcreatedInEvent_none: UpcomingWorkingGroupOpeningWhereInput - upcomingworkinggroupopeningcreatedInEvent_some: UpcomingWorkingGroupOpeningWhereInput - upcomingworkinggroupopeningcreatedInEvent_every: UpcomingWorkingGroupOpeningWhereInput - workinggroupmetadatasetInEvent_none: WorkingGroupMetadataWhereInput - workinggroupmetadatasetInEvent_some: WorkingGroupMetadataWhereInput - workinggroupmetadatasetInEvent_every: WorkingGroupMetadataWhereInput - AND: [StatusTextChangedEventWhereInput!] - OR: [StatusTextChangedEventWhereInput!] - NOT: [StatusTextChangedEventWhereInput!] -} - -input StatusTextChangedEventWhereUniqueInput { - id: ID! -} - -input StatusTextChangedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - group: ID! - metadata: String - result: JSONObject! -} - -input StatusTextChangedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - group: ID - metadata: String - result: JSONObject -} - -input WorkingGroupMetadataWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - status_eq: String - status_contains: String - status_startsWith: String - status_endsWith: String - status_in: [String!] - statusMessage_eq: String - statusMessage_contains: String - statusMessage_startsWith: String - statusMessage_endsWith: String - statusMessage_in: [String!] - about_eq: String - about_contains: String - about_startsWith: String - about_endsWith: String - about_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - setInEvent: StatusTextChangedEventWhereInput - group: WorkingGroupWhereInput - workinggroupmetadata_none: WorkingGroupWhereInput - workinggroupmetadata_some: WorkingGroupWhereInput - workinggroupmetadata_every: WorkingGroupWhereInput - AND: [WorkingGroupMetadataWhereInput!] - OR: [WorkingGroupMetadataWhereInput!] - NOT: [WorkingGroupMetadataWhereInput!] -} - -input WorkingGroupMetadataWhereUniqueInput { - id: ID! -} - -input WorkingGroupMetadataCreateInput { - status: String - statusMessage: String - about: String - description: String - setInEvent: ID! - group: ID! -} - -input WorkingGroupMetadataUpdateInput { - status: String - statusMessage: String - about: String - description: String - setInEvent: ID - group: ID -} - -input BudgetFundedEventWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - group: WorkingGroupWhereInput - member: MembershipWhereInput - AND: [BudgetFundedEventWhereInput!] - OR: [BudgetFundedEventWhereInput!] - NOT: [BudgetFundedEventWhereInput!] -} - -input BudgetFundedEventWhereUniqueInput { - id: ID! -} - -input BudgetFundedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - group: ID! - member: ID! - rationale: String! - amount: String! -} - -input BudgetFundedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - group: ID - member: ID - rationale: String - amount: String -} - -input BudgetSetEventWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - newBudget_eq: BigInt - newBudget_gt: BigInt - newBudget_gte: BigInt - newBudget_lt: BigInt - newBudget_lte: BigInt - newBudget_in: [BigInt!] - group: WorkingGroupWhereInput - AND: [BudgetSetEventWhereInput!] - OR: [BudgetSetEventWhereInput!] - NOT: [BudgetSetEventWhereInput!] -} - -input BudgetSetEventWhereUniqueInput { - id: ID! -} - -input BudgetSetEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - group: ID! - newBudget: String! -} - -input BudgetSetEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - group: ID - newBudget: String -} - -input BudgetSpendingEventWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - reciever_eq: String - reciever_contains: String - reciever_startsWith: String - reciever_endsWith: String - reciever_in: [String!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - group: WorkingGroupWhereInput - AND: [BudgetSpendingEventWhereInput!] - OR: [BudgetSpendingEventWhereInput!] - NOT: [BudgetSpendingEventWhereInput!] -} - -input BudgetSpendingEventWhereUniqueInput { - id: ID! -} - -input BudgetSpendingEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - group: ID! - reciever: String! - amount: String! - rationale: String -} - -input BudgetSpendingEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - group: ID - reciever: String - amount: String - rationale: String -} - -input BudgetUpdatedEventWhereInput { +input StakeIncreasedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -11599,191 +11084,48 @@ input BudgetUpdatedEventWhereInput { network_in: [Network!] indexInBlock_eq: Int indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - budgetChangeAmount_eq: BigInt - budgetChangeAmount_gt: BigInt - budgetChangeAmount_gte: BigInt - budgetChangeAmount_lt: BigInt - budgetChangeAmount_lte: BigInt - budgetChangeAmount_in: [BigInt!] + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] group: WorkingGroupWhereInput - AND: [BudgetUpdatedEventWhereInput!] - OR: [BudgetUpdatedEventWhereInput!] - NOT: [BudgetUpdatedEventWhereInput!] + worker: WorkerWhereInput + AND: [StakeIncreasedEventWhereInput!] + OR: [StakeIncreasedEventWhereInput!] + NOT: [StakeIncreasedEventWhereInput!] } -input BudgetUpdatedEventWhereUniqueInput { +input StakeIncreasedEventWhereUniqueInput { id: ID! } -input BudgetUpdatedEventCreateInput { +input StakeIncreasedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! group: ID! - budgetChangeAmount: String! + worker: ID! + amount: String! } -input BudgetUpdatedEventUpdateInput { +input StakeIncreasedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float group: ID - budgetChangeAmount: String -} - -input WorkingGroupWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - name_eq: String - name_contains: String - name_startsWith: String - name_endsWith: String - name_in: [String!] - budget_eq: BigInt - budget_gt: BigInt - budget_gte: BigInt - budget_lt: BigInt - budget_lte: BigInt - budget_in: [BigInt!] - metadata: WorkingGroupMetadataWhereInput - leader: WorkerWhereInput - workers_none: WorkerWhereInput - workers_some: WorkerWhereInput - workers_every: WorkerWhereInput - openings_none: WorkingGroupOpeningWhereInput - openings_some: WorkingGroupOpeningWhereInput - openings_every: WorkingGroupOpeningWhereInput - applicationwithdrawneventgroup_none: ApplicationWithdrawnEventWhereInput - applicationwithdrawneventgroup_some: ApplicationWithdrawnEventWhereInput - applicationwithdrawneventgroup_every: ApplicationWithdrawnEventWhereInput - appliedonopeningeventgroup_none: AppliedOnOpeningEventWhereInput - appliedonopeningeventgroup_some: AppliedOnOpeningEventWhereInput - appliedonopeningeventgroup_every: AppliedOnOpeningEventWhereInput - budgetfundedeventgroup_none: BudgetFundedEventWhereInput - budgetfundedeventgroup_some: BudgetFundedEventWhereInput - budgetfundedeventgroup_every: BudgetFundedEventWhereInput - budgetseteventgroup_none: BudgetSetEventWhereInput - budgetseteventgroup_some: BudgetSetEventWhereInput - budgetseteventgroup_every: BudgetSetEventWhereInput - budgetspendingeventgroup_none: BudgetSpendingEventWhereInput - budgetspendingeventgroup_some: BudgetSpendingEventWhereInput - budgetspendingeventgroup_every: BudgetSpendingEventWhereInput - budgetupdatedeventgroup_none: BudgetUpdatedEventWhereInput - budgetupdatedeventgroup_some: BudgetUpdatedEventWhereInput - budgetupdatedeventgroup_every: BudgetUpdatedEventWhereInput - leaderseteventgroup_none: LeaderSetEventWhereInput - leaderseteventgroup_some: LeaderSetEventWhereInput - leaderseteventgroup_every: LeaderSetEventWhereInput - leaderunseteventgroup_none: LeaderUnsetEventWhereInput - leaderunseteventgroup_some: LeaderUnsetEventWhereInput - leaderunseteventgroup_every: LeaderUnsetEventWhereInput - newmissedrewardlevelreachedeventgroup_none: NewMissedRewardLevelReachedEventWhereInput - newmissedrewardlevelreachedeventgroup_some: NewMissedRewardLevelReachedEventWhereInput - newmissedrewardlevelreachedeventgroup_every: NewMissedRewardLevelReachedEventWhereInput - openingaddedeventgroup_none: OpeningAddedEventWhereInput - openingaddedeventgroup_some: OpeningAddedEventWhereInput - openingaddedeventgroup_every: OpeningAddedEventWhereInput - openingcanceledeventgroup_none: OpeningCanceledEventWhereInput - openingcanceledeventgroup_some: OpeningCanceledEventWhereInput - openingcanceledeventgroup_every: OpeningCanceledEventWhereInput - openingfilledeventgroup_none: OpeningFilledEventWhereInput - openingfilledeventgroup_some: OpeningFilledEventWhereInput - openingfilledeventgroup_every: OpeningFilledEventWhereInput - rewardpaideventgroup_none: RewardPaidEventWhereInput - rewardpaideventgroup_some: RewardPaidEventWhereInput - rewardpaideventgroup_every: RewardPaidEventWhereInput - stakedecreasedeventgroup_none: StakeDecreasedEventWhereInput - stakedecreasedeventgroup_some: StakeDecreasedEventWhereInput - stakedecreasedeventgroup_every: StakeDecreasedEventWhereInput - stakeincreasedeventgroup_none: StakeIncreasedEventWhereInput - stakeincreasedeventgroup_some: StakeIncreasedEventWhereInput - stakeincreasedeventgroup_every: StakeIncreasedEventWhereInput - stakeslashedeventgroup_none: StakeSlashedEventWhereInput - stakeslashedeventgroup_some: StakeSlashedEventWhereInput - stakeslashedeventgroup_every: StakeSlashedEventWhereInput - statustextchangedeventgroup_none: StatusTextChangedEventWhereInput - statustextchangedeventgroup_some: StatusTextChangedEventWhereInput - statustextchangedeventgroup_every: StatusTextChangedEventWhereInput - terminatedleadereventgroup_none: TerminatedLeaderEventWhereInput - terminatedleadereventgroup_some: TerminatedLeaderEventWhereInput - terminatedleadereventgroup_every: TerminatedLeaderEventWhereInput - terminatedworkereventgroup_none: TerminatedWorkerEventWhereInput - terminatedworkereventgroup_some: TerminatedWorkerEventWhereInput - terminatedworkereventgroup_every: TerminatedWorkerEventWhereInput - upcomingworkinggroupopeninggroup_none: UpcomingWorkingGroupOpeningWhereInput - upcomingworkinggroupopeninggroup_some: UpcomingWorkingGroupOpeningWhereInput - upcomingworkinggroupopeninggroup_every: UpcomingWorkingGroupOpeningWhereInput - workerexitedeventgroup_none: WorkerExitedEventWhereInput - workerexitedeventgroup_some: WorkerExitedEventWhereInput - workerexitedeventgroup_every: WorkerExitedEventWhereInput - workerrewardaccountupdatedeventgroup_none: WorkerRewardAccountUpdatedEventWhereInput - workerrewardaccountupdatedeventgroup_some: WorkerRewardAccountUpdatedEventWhereInput - workerrewardaccountupdatedeventgroup_every: WorkerRewardAccountUpdatedEventWhereInput - workerrewardamountupdatedeventgroup_none: WorkerRewardAmountUpdatedEventWhereInput - workerrewardamountupdatedeventgroup_some: WorkerRewardAmountUpdatedEventWhereInput - workerrewardamountupdatedeventgroup_every: WorkerRewardAmountUpdatedEventWhereInput - workerroleaccountupdatedeventgroup_none: WorkerRoleAccountUpdatedEventWhereInput - workerroleaccountupdatedeventgroup_some: WorkerRoleAccountUpdatedEventWhereInput - workerroleaccountupdatedeventgroup_every: WorkerRoleAccountUpdatedEventWhereInput - workerstartedleavingeventgroup_none: WorkerStartedLeavingEventWhereInput - workerstartedleavingeventgroup_some: WorkerStartedLeavingEventWhereInput - workerstartedleavingeventgroup_every: WorkerStartedLeavingEventWhereInput - workinggroupmetadatagroup_none: WorkingGroupMetadataWhereInput - workinggroupmetadatagroup_some: WorkingGroupMetadataWhereInput - workinggroupmetadatagroup_every: WorkingGroupMetadataWhereInput - AND: [WorkingGroupWhereInput!] - OR: [WorkingGroupWhereInput!] - NOT: [WorkingGroupWhereInput!] -} - -input WorkingGroupWhereUniqueInput { - id: ID - name: String -} - -input WorkingGroupCreateInput { - name: String! - metadata: ID - leader: ID - budget: String! -} - -input WorkingGroupUpdateInput { - name: String - metadata: ID - leader: ID - budget: String + worker: ID + amount: String } -input OpeningFilledEventWhereInput { +input TerminatedLeaderEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -11827,39 +11169,51 @@ input OpeningFilledEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] + penalty_eq: BigInt + penalty_gt: BigInt + penalty_gte: BigInt + penalty_lt: BigInt + penalty_lte: BigInt + penalty_in: [BigInt!] + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] group: WorkingGroupWhereInput - opening: WorkingGroupOpeningWhereInput - workersHired_none: WorkerWhereInput - workersHired_some: WorkerWhereInput - workersHired_every: WorkerWhereInput - AND: [OpeningFilledEventWhereInput!] - OR: [OpeningFilledEventWhereInput!] - NOT: [OpeningFilledEventWhereInput!] + worker: WorkerWhereInput + AND: [TerminatedLeaderEventWhereInput!] + OR: [TerminatedLeaderEventWhereInput!] + NOT: [TerminatedLeaderEventWhereInput!] } -input OpeningFilledEventWhereUniqueInput { +input TerminatedLeaderEventWhereUniqueInput { id: ID! } -input OpeningFilledEventCreateInput { +input TerminatedLeaderEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! group: ID! - opening: ID! + worker: ID! + penalty: String + rationale: String } -input OpeningFilledEventUpdateInput { +input TerminatedLeaderEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float group: ID - opening: ID + worker: ID + penalty: String + rationale: String } -input GeoCoordinatesWhereInput { +input TerminatedWorkerEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -11884,41 +11238,70 @@ input GeoCoordinatesWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - latitude_eq: Float - latitude_gt: Float - latitude_gte: Float - latitude_lt: Float - latitude_lte: Float - latitude_in: [Float!] - longitude_eq: Float - longitude_gt: Float - longitude_gte: Float - longitude_lt: Float - longitude_lte: Float - longitude_in: [Float!] - nodelocationmetadatacoordinates_none: NodeLocationMetadataWhereInput - nodelocationmetadatacoordinates_some: NodeLocationMetadataWhereInput - nodelocationmetadatacoordinates_every: NodeLocationMetadataWhereInput - AND: [GeoCoordinatesWhereInput!] - OR: [GeoCoordinatesWhereInput!] - NOT: [GeoCoordinatesWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + penalty_eq: BigInt + penalty_gt: BigInt + penalty_gte: BigInt + penalty_lt: BigInt + penalty_lte: BigInt + penalty_in: [BigInt!] + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + group: WorkingGroupWhereInput + worker: WorkerWhereInput + AND: [TerminatedWorkerEventWhereInput!] + OR: [TerminatedWorkerEventWhereInput!] + NOT: [TerminatedWorkerEventWhereInput!] } -input GeoCoordinatesWhereUniqueInput { +input TerminatedWorkerEventWhereUniqueInput { id: ID! } -input GeoCoordinatesCreateInput { - latitude: Float! - longitude: Float! +input TerminatedWorkerEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + worker: ID! + penalty: String + rationale: String } -input GeoCoordinatesUpdateInput { - latitude: Float - longitude: Float +input TerminatedWorkerEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + worker: ID + penalty: String + rationale: String } -input DistributionBucketFamilyGeographicAreaWhereInput { +input WorkerExitedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -11943,28 +11326,55 @@ input DistributionBucketFamilyGeographicAreaWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - area_json: JSONObject - distributionBucketFamilyMetadata: DistributionBucketFamilyMetadataWhereInput - AND: [DistributionBucketFamilyGeographicAreaWhereInput!] - OR: [DistributionBucketFamilyGeographicAreaWhereInput!] - NOT: [DistributionBucketFamilyGeographicAreaWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + group: WorkingGroupWhereInput + worker: WorkerWhereInput + AND: [WorkerExitedEventWhereInput!] + OR: [WorkerExitedEventWhereInput!] + NOT: [WorkerExitedEventWhereInput!] } -input DistributionBucketFamilyGeographicAreaWhereUniqueInput { +input WorkerExitedEventWhereUniqueInput { id: ID! } -input DistributionBucketFamilyGeographicAreaCreateInput { - area: JSONObject! - distributionBucketFamilyMetadata: ID! +input WorkerExitedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + worker: ID! } -input DistributionBucketFamilyGeographicAreaUpdateInput { - area: JSONObject - distributionBucketFamilyMetadata: ID +input WorkerExitedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + worker: ID } -input DistributionBucketFamilyMetadataWhereInput { +input WorkerRewardAccountUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -11989,47 +11399,62 @@ input DistributionBucketFamilyMetadataWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - region_eq: String - region_contains: String - region_startsWith: String - region_endsWith: String - region_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - latencyTestTargets_containsAll: [String!] - latencyTestTargets_containsNone: [String!] - latencyTestTargets_containsAny: [String!] - areas_none: DistributionBucketFamilyGeographicAreaWhereInput - areas_some: DistributionBucketFamilyGeographicAreaWhereInput - areas_every: DistributionBucketFamilyGeographicAreaWhereInput - distributionbucketfamilymetadata_none: DistributionBucketFamilyWhereInput - distributionbucketfamilymetadata_some: DistributionBucketFamilyWhereInput - distributionbucketfamilymetadata_every: DistributionBucketFamilyWhereInput - AND: [DistributionBucketFamilyMetadataWhereInput!] - OR: [DistributionBucketFamilyMetadataWhereInput!] - NOT: [DistributionBucketFamilyMetadataWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + newRewardAccount_eq: String + newRewardAccount_contains: String + newRewardAccount_startsWith: String + newRewardAccount_endsWith: String + newRewardAccount_in: [String!] + group: WorkingGroupWhereInput + worker: WorkerWhereInput + AND: [WorkerRewardAccountUpdatedEventWhereInput!] + OR: [WorkerRewardAccountUpdatedEventWhereInput!] + NOT: [WorkerRewardAccountUpdatedEventWhereInput!] } -input DistributionBucketFamilyMetadataWhereUniqueInput { +input WorkerRewardAccountUpdatedEventWhereUniqueInput { id: ID! } -input DistributionBucketFamilyMetadataCreateInput { - region: String - description: String - latencyTestTargets: [String!] +input WorkerRewardAccountUpdatedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + worker: ID! + newRewardAccount: String! } -input DistributionBucketFamilyMetadataUpdateInput { - region: String - description: String - latencyTestTargets: [String!] +input WorkerRewardAccountUpdatedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + worker: ID + newRewardAccount: String } -input DistributionBucketFamilyWhereInput { +input WorkerRewardAmountUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12054,28 +11479,63 @@ input DistributionBucketFamilyWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - metadata: DistributionBucketFamilyMetadataWhereInput - buckets_none: DistributionBucketWhereInput - buckets_some: DistributionBucketWhereInput - buckets_every: DistributionBucketWhereInput - AND: [DistributionBucketFamilyWhereInput!] - OR: [DistributionBucketFamilyWhereInput!] - NOT: [DistributionBucketFamilyWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + newRewardPerBlock_eq: BigInt + newRewardPerBlock_gt: BigInt + newRewardPerBlock_gte: BigInt + newRewardPerBlock_lt: BigInt + newRewardPerBlock_lte: BigInt + newRewardPerBlock_in: [BigInt!] + group: WorkingGroupWhereInput + worker: WorkerWhereInput + AND: [WorkerRewardAmountUpdatedEventWhereInput!] + OR: [WorkerRewardAmountUpdatedEventWhereInput!] + NOT: [WorkerRewardAmountUpdatedEventWhereInput!] } -input DistributionBucketFamilyWhereUniqueInput { +input WorkerRewardAmountUpdatedEventWhereUniqueInput { id: ID! } -input DistributionBucketFamilyCreateInput { - metadata: ID +input WorkerRewardAmountUpdatedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + worker: ID! + newRewardPerBlock: String! } -input DistributionBucketFamilyUpdateInput { - metadata: ID +input WorkerRewardAmountUpdatedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + worker: ID + newRewardPerBlock: String } -input DistributionBucketWhereInput { +input WorkerRoleAccountUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12097,50 +11557,65 @@ input DistributionBucketWhereInput { deletedAt_lt: DateTime deletedAt_lte: DateTime deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - bucketIndex_eq: Int - bucketIndex_gt: Int - bucketIndex_gte: Int - bucketIndex_lt: Int - bucketIndex_lte: Int - bucketIndex_in: [Int!] - acceptingNewBags_eq: Boolean - acceptingNewBags_in: [Boolean!] - distributing_eq: Boolean - distributing_in: [Boolean!] - family: DistributionBucketFamilyWhereInput - operators_none: DistributionBucketOperatorWhereInput - operators_some: DistributionBucketOperatorWhereInput - operators_every: DistributionBucketOperatorWhereInput - bags_none: StorageBagWhereInput - bags_some: StorageBagWhereInput - bags_every: StorageBagWhereInput - AND: [DistributionBucketWhereInput!] - OR: [DistributionBucketWhereInput!] - NOT: [DistributionBucketWhereInput!] + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + newRoleAccount_eq: String + newRoleAccount_contains: String + newRoleAccount_startsWith: String + newRoleAccount_endsWith: String + newRoleAccount_in: [String!] + group: WorkingGroupWhereInput + worker: WorkerWhereInput + AND: [WorkerRoleAccountUpdatedEventWhereInput!] + OR: [WorkerRoleAccountUpdatedEventWhereInput!] + NOT: [WorkerRoleAccountUpdatedEventWhereInput!] } -input DistributionBucketWhereUniqueInput { +input WorkerRoleAccountUpdatedEventWhereUniqueInput { id: ID! } -input DistributionBucketCreateInput { - family: ID! - bucketIndex: Float! - acceptingNewBags: Boolean! - distributing: Boolean! +input WorkerRoleAccountUpdatedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + worker: ID! + newRoleAccount: String! } -input DistributionBucketUpdateInput { - family: ID - bucketIndex: Float - acceptingNewBags: Boolean - distributing: Boolean +input WorkerRoleAccountUpdatedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + worker: ID + newRoleAccount: String } -input DistributionBucketOperatorWhereInput { +input WorkerStartedLeavingEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12165,40 +11640,62 @@ input DistributionBucketOperatorWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - workerId_eq: Int - workerId_gt: Int - workerId_gte: Int - workerId_lt: Int - workerId_lte: Int - workerId_in: [Int!] - status_eq: DistributionBucketOperatorStatus - status_in: [DistributionBucketOperatorStatus!] - distributionBucket: DistributionBucketWhereInput - metadata: DistributionBucketOperatorMetadataWhereInput - AND: [DistributionBucketOperatorWhereInput!] - OR: [DistributionBucketOperatorWhereInput!] - NOT: [DistributionBucketOperatorWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + group: WorkingGroupWhereInput + worker: WorkerWhereInput + AND: [WorkerStartedLeavingEventWhereInput!] + OR: [WorkerStartedLeavingEventWhereInput!] + NOT: [WorkerStartedLeavingEventWhereInput!] } -input DistributionBucketOperatorWhereUniqueInput { +input WorkerStartedLeavingEventWhereUniqueInput { id: ID! } -input DistributionBucketOperatorCreateInput { - distributionBucket: ID! - workerId: Float! - status: DistributionBucketOperatorStatus! - metadata: ID +input WorkerStartedLeavingEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + worker: ID! + rationale: String } -input DistributionBucketOperatorUpdateInput { - distributionBucket: ID - workerId: Float - status: DistributionBucketOperatorStatus - metadata: ID +input WorkerStartedLeavingEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + worker: ID + rationale: String } -input DistributionBucketOperatorMetadataWhereInput { +input WorkerWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12223,42 +11720,184 @@ input DistributionBucketOperatorMetadataWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - nodeEndpoint_eq: String - nodeEndpoint_contains: String - nodeEndpoint_startsWith: String - nodeEndpoint_endsWith: String - nodeEndpoint_in: [String!] - extra_eq: String - extra_contains: String - extra_startsWith: String - extra_endsWith: String - extra_in: [String!] - nodeLocation: NodeLocationMetadataWhereInput - distributionbucketoperatormetadata_none: DistributionBucketOperatorWhereInput - distributionbucketoperatormetadata_some: DistributionBucketOperatorWhereInput - distributionbucketoperatormetadata_every: DistributionBucketOperatorWhereInput - AND: [DistributionBucketOperatorMetadataWhereInput!] - OR: [DistributionBucketOperatorMetadataWhereInput!] - NOT: [DistributionBucketOperatorMetadataWhereInput!] + runtimeId_eq: Int + runtimeId_gt: Int + runtimeId_gte: Int + runtimeId_lt: Int + runtimeId_lte: Int + runtimeId_in: [Int!] + groupId_eq: String + groupId_contains: String + groupId_startsWith: String + groupId_endsWith: String + groupId_in: [String!] + roleAccount_eq: String + roleAccount_contains: String + roleAccount_startsWith: String + roleAccount_endsWith: String + roleAccount_in: [String!] + rewardAccount_eq: String + rewardAccount_contains: String + rewardAccount_startsWith: String + rewardAccount_endsWith: String + rewardAccount_in: [String!] + stakeAccount_eq: String + stakeAccount_contains: String + stakeAccount_startsWith: String + stakeAccount_endsWith: String + stakeAccount_in: [String!] + status_json: JSONObject + isLead_eq: Boolean + isLead_in: [Boolean!] + isActive_eq: Boolean + isActive_in: [Boolean!] + stake_eq: BigInt + stake_gt: BigInt + stake_gte: BigInt + stake_lt: BigInt + stake_lte: BigInt + stake_in: [BigInt!] + rewardPerBlock_eq: BigInt + rewardPerBlock_gt: BigInt + rewardPerBlock_gte: BigInt + rewardPerBlock_lt: BigInt + rewardPerBlock_lte: BigInt + rewardPerBlock_in: [BigInt!] + missingRewardAmount_eq: BigInt + missingRewardAmount_gt: BigInt + missingRewardAmount_gte: BigInt + missingRewardAmount_lt: BigInt + missingRewardAmount_lte: BigInt + missingRewardAmount_in: [BigInt!] + storage_eq: String + storage_contains: String + storage_startsWith: String + storage_endsWith: String + storage_in: [String!] + group: WorkingGroupWhereInput + membership: MembershipWhereInput + payouts_none: RewardPaidEventWhereInput + payouts_some: RewardPaidEventWhereInput + payouts_every: RewardPaidEventWhereInput + slashes_none: StakeSlashedEventWhereInput + slashes_some: StakeSlashedEventWhereInput + slashes_every: StakeSlashedEventWhereInput + entry: OpeningFilledEventWhereInput + application: WorkingGroupApplicationWhereInput + managedForumCategories_none: ForumCategoryWhereInput + managedForumCategories_some: ForumCategoryWhereInput + managedForumCategories_every: ForumCategoryWhereInput + categoryarchivalstatusupdatedeventactor_none: CategoryArchivalStatusUpdatedEventWhereInput + categoryarchivalstatusupdatedeventactor_some: CategoryArchivalStatusUpdatedEventWhereInput + categoryarchivalstatusupdatedeventactor_every: CategoryArchivalStatusUpdatedEventWhereInput + categorydeletedeventactor_none: CategoryDeletedEventWhereInput + categorydeletedeventactor_some: CategoryDeletedEventWhereInput + categorydeletedeventactor_every: CategoryDeletedEventWhereInput + categorymembershipofmoderatorupdatedeventmoderator_none: CategoryMembershipOfModeratorUpdatedEventWhereInput + categorymembershipofmoderatorupdatedeventmoderator_some: CategoryMembershipOfModeratorUpdatedEventWhereInput + categorymembershipofmoderatorupdatedeventmoderator_every: CategoryMembershipOfModeratorUpdatedEventWhereInput + categorystickythreadupdateeventactor_none: CategoryStickyThreadUpdateEventWhereInput + categorystickythreadupdateeventactor_some: CategoryStickyThreadUpdateEventWhereInput + categorystickythreadupdateeventactor_every: CategoryStickyThreadUpdateEventWhereInput + leaderseteventworker_none: LeaderSetEventWhereInput + leaderseteventworker_some: LeaderSetEventWhereInput + leaderseteventworker_every: LeaderSetEventWhereInput + leaderunseteventleader_none: LeaderUnsetEventWhereInput + leaderunseteventleader_some: LeaderUnsetEventWhereInput + leaderunseteventleader_every: LeaderUnsetEventWhereInput + memberverificationstatusupdatedeventworker_none: MemberVerificationStatusUpdatedEventWhereInput + memberverificationstatusupdatedeventworker_some: MemberVerificationStatusUpdatedEventWhereInput + memberverificationstatusupdatedeventworker_every: MemberVerificationStatusUpdatedEventWhereInput + newmissedrewardlevelreachedeventworker_none: NewMissedRewardLevelReachedEventWhereInput + newmissedrewardlevelreachedeventworker_some: NewMissedRewardLevelReachedEventWhereInput + newmissedrewardlevelreachedeventworker_every: NewMissedRewardLevelReachedEventWhereInput + postmoderatedeventactor_none: PostModeratedEventWhereInput + postmoderatedeventactor_some: PostModeratedEventWhereInput + postmoderatedeventactor_every: PostModeratedEventWhereInput + stakedecreasedeventworker_none: StakeDecreasedEventWhereInput + stakedecreasedeventworker_some: StakeDecreasedEventWhereInput + stakedecreasedeventworker_every: StakeDecreasedEventWhereInput + stakeincreasedeventworker_none: StakeIncreasedEventWhereInput + stakeincreasedeventworker_some: StakeIncreasedEventWhereInput + stakeincreasedeventworker_every: StakeIncreasedEventWhereInput + terminatedleadereventworker_none: TerminatedLeaderEventWhereInput + terminatedleadereventworker_some: TerminatedLeaderEventWhereInput + terminatedleadereventworker_every: TerminatedLeaderEventWhereInput + terminatedworkereventworker_none: TerminatedWorkerEventWhereInput + terminatedworkereventworker_some: TerminatedWorkerEventWhereInput + terminatedworkereventworker_every: TerminatedWorkerEventWhereInput + threadmoderatedeventactor_none: ThreadModeratedEventWhereInput + threadmoderatedeventactor_some: ThreadModeratedEventWhereInput + threadmoderatedeventactor_every: ThreadModeratedEventWhereInput + threadmovedeventactor_none: ThreadMovedEventWhereInput + threadmovedeventactor_some: ThreadMovedEventWhereInput + threadmovedeventactor_every: ThreadMovedEventWhereInput + workerexitedeventworker_none: WorkerExitedEventWhereInput + workerexitedeventworker_some: WorkerExitedEventWhereInput + workerexitedeventworker_every: WorkerExitedEventWhereInput + workerrewardaccountupdatedeventworker_none: WorkerRewardAccountUpdatedEventWhereInput + workerrewardaccountupdatedeventworker_some: WorkerRewardAccountUpdatedEventWhereInput + workerrewardaccountupdatedeventworker_every: WorkerRewardAccountUpdatedEventWhereInput + workerrewardamountupdatedeventworker_none: WorkerRewardAmountUpdatedEventWhereInput + workerrewardamountupdatedeventworker_some: WorkerRewardAmountUpdatedEventWhereInput + workerrewardamountupdatedeventworker_every: WorkerRewardAmountUpdatedEventWhereInput + workerroleaccountupdatedeventworker_none: WorkerRoleAccountUpdatedEventWhereInput + workerroleaccountupdatedeventworker_some: WorkerRoleAccountUpdatedEventWhereInput + workerroleaccountupdatedeventworker_every: WorkerRoleAccountUpdatedEventWhereInput + workerstartedleavingeventworker_none: WorkerStartedLeavingEventWhereInput + workerstartedleavingeventworker_some: WorkerStartedLeavingEventWhereInput + workerstartedleavingeventworker_every: WorkerStartedLeavingEventWhereInput + workinggroupleader_none: WorkingGroupWhereInput + workinggroupleader_some: WorkingGroupWhereInput + workinggroupleader_every: WorkingGroupWhereInput + AND: [WorkerWhereInput!] + OR: [WorkerWhereInput!] + NOT: [WorkerWhereInput!] } -input DistributionBucketOperatorMetadataWhereUniqueInput { +input WorkerWhereUniqueInput { id: ID! } -input DistributionBucketOperatorMetadataCreateInput { - nodeEndpoint: String - nodeLocation: ID - extra: String +input WorkerCreateInput { + runtimeId: Float! + group: ID! + groupId: String! + membership: ID! + roleAccount: String! + rewardAccount: String! + stakeAccount: String! + status: JSONObject! + isLead: Boolean! + isActive: Boolean! + stake: String! + rewardPerBlock: String! + missingRewardAmount: String + entry: ID! + application: ID! + storage: String } -input DistributionBucketOperatorMetadataUpdateInput { - nodeEndpoint: String - nodeLocation: ID - extra: String +input WorkerUpdateInput { + runtimeId: Float + group: ID + groupId: String + membership: ID + roleAccount: String + rewardAccount: String + stakeAccount: String + status: JSONObject + isLead: Boolean + isActive: Boolean + stake: String + rewardPerBlock: String + missingRewardAmount: String + entry: ID + application: ID + storage: String } -input NodeLocationMetadataWhereInput { +input WorkingGroupApplicationWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12283,45 +11922,78 @@ input NodeLocationMetadataWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - countryCode_eq: String - countryCode_contains: String - countryCode_startsWith: String - countryCode_endsWith: String - countryCode_in: [String!] - city_eq: String - city_contains: String - city_startsWith: String - city_endsWith: String - city_in: [String!] - coordinates: GeoCoordinatesWhereInput - distributionbucketoperatormetadatanodeLocation_none: DistributionBucketOperatorMetadataWhereInput - distributionbucketoperatormetadatanodeLocation_some: DistributionBucketOperatorMetadataWhereInput - distributionbucketoperatormetadatanodeLocation_every: DistributionBucketOperatorMetadataWhereInput - storagebucketoperatormetadatanodeLocation_none: StorageBucketOperatorMetadataWhereInput - storagebucketoperatormetadatanodeLocation_some: StorageBucketOperatorMetadataWhereInput - storagebucketoperatormetadatanodeLocation_every: StorageBucketOperatorMetadataWhereInput - AND: [NodeLocationMetadataWhereInput!] - OR: [NodeLocationMetadataWhereInput!] - NOT: [NodeLocationMetadataWhereInput!] + runtimeId_eq: Int + runtimeId_gt: Int + runtimeId_gte: Int + runtimeId_lt: Int + runtimeId_lte: Int + runtimeId_in: [Int!] + stake_eq: BigInt + stake_gt: BigInt + stake_gte: BigInt + stake_lt: BigInt + stake_lte: BigInt + stake_in: [BigInt!] + roleAccount_eq: String + roleAccount_contains: String + roleAccount_startsWith: String + roleAccount_endsWith: String + roleAccount_in: [String!] + rewardAccount_eq: String + rewardAccount_contains: String + rewardAccount_startsWith: String + rewardAccount_endsWith: String + rewardAccount_in: [String!] + stakingAccount_eq: String + stakingAccount_contains: String + stakingAccount_startsWith: String + stakingAccount_endsWith: String + stakingAccount_in: [String!] + status_json: JSONObject + opening: WorkingGroupOpeningWhereInput + applicant: MembershipWhereInput + answers_none: ApplicationFormQuestionAnswerWhereInput + answers_some: ApplicationFormQuestionAnswerWhereInput + answers_every: ApplicationFormQuestionAnswerWhereInput + createdInEvent: AppliedOnOpeningEventWhereInput + applicationwithdrawneventapplication_none: ApplicationWithdrawnEventWhereInput + applicationwithdrawneventapplication_some: ApplicationWithdrawnEventWhereInput + applicationwithdrawneventapplication_every: ApplicationWithdrawnEventWhereInput + workerapplication_none: WorkerWhereInput + workerapplication_some: WorkerWhereInput + workerapplication_every: WorkerWhereInput + AND: [WorkingGroupApplicationWhereInput!] + OR: [WorkingGroupApplicationWhereInput!] + NOT: [WorkingGroupApplicationWhereInput!] } -input NodeLocationMetadataWhereUniqueInput { +input WorkingGroupApplicationWhereUniqueInput { id: ID! } -input NodeLocationMetadataCreateInput { - countryCode: String - city: String - coordinates: ID +input WorkingGroupApplicationCreateInput { + runtimeId: Float! + opening: ID! + applicant: ID! + stake: String! + roleAccount: String! + rewardAccount: String! + stakingAccount: String! + status: JSONObject! } -input NodeLocationMetadataUpdateInput { - countryCode: String - city: String - coordinates: ID +input WorkingGroupApplicationUpdateInput { + runtimeId: Float + opening: ID + applicant: ID + stake: String + roleAccount: String + rewardAccount: String + stakingAccount: String + status: JSONObject } -input StorageBucketOperatorMetadataWhereInput { +input ApplicationFormQuestionAnswerWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12346,42 +12018,35 @@ input StorageBucketOperatorMetadataWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - nodeEndpoint_eq: String - nodeEndpoint_contains: String - nodeEndpoint_startsWith: String - nodeEndpoint_endsWith: String - nodeEndpoint_in: [String!] - extra_eq: String - extra_contains: String - extra_startsWith: String - extra_endsWith: String - extra_in: [String!] - nodeLocation: NodeLocationMetadataWhereInput - storagebucketoperatorMetadata_none: StorageBucketWhereInput - storagebucketoperatorMetadata_some: StorageBucketWhereInput - storagebucketoperatorMetadata_every: StorageBucketWhereInput - AND: [StorageBucketOperatorMetadataWhereInput!] - OR: [StorageBucketOperatorMetadataWhereInput!] - NOT: [StorageBucketOperatorMetadataWhereInput!] + answer_eq: String + answer_contains: String + answer_startsWith: String + answer_endsWith: String + answer_in: [String!] + application: WorkingGroupApplicationWhereInput + question: ApplicationFormQuestionWhereInput + AND: [ApplicationFormQuestionAnswerWhereInput!] + OR: [ApplicationFormQuestionAnswerWhereInput!] + NOT: [ApplicationFormQuestionAnswerWhereInput!] } -input StorageBucketOperatorMetadataWhereUniqueInput { +input ApplicationFormQuestionAnswerWhereUniqueInput { id: ID! } -input StorageBucketOperatorMetadataCreateInput { - nodeEndpoint: String - nodeLocation: ID - extra: String +input ApplicationFormQuestionAnswerCreateInput { + application: ID! + question: ID! + answer: String! } -input StorageBucketOperatorMetadataUpdateInput { - nodeEndpoint: String - nodeLocation: ID - extra: String +input ApplicationFormQuestionAnswerUpdateInput { + application: ID + question: ID + answer: String } -input StorageBucketWhereInput { +input ApplicationFormQuestionWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12406,67 +12071,47 @@ input StorageBucketWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - operatorStatus_json: JSONObject - acceptingNewBags_eq: Boolean - acceptingNewBags_in: [Boolean!] - dataObjectsSizeLimit_eq: BigInt - dataObjectsSizeLimit_gt: BigInt - dataObjectsSizeLimit_gte: BigInt - dataObjectsSizeLimit_lt: BigInt - dataObjectsSizeLimit_lte: BigInt - dataObjectsSizeLimit_in: [BigInt!] - dataObjectCountLimit_eq: BigInt - dataObjectCountLimit_gt: BigInt - dataObjectCountLimit_gte: BigInt - dataObjectCountLimit_lt: BigInt - dataObjectCountLimit_lte: BigInt - dataObjectCountLimit_in: [BigInt!] - dataObjectsCount_eq: BigInt - dataObjectsCount_gt: BigInt - dataObjectsCount_gte: BigInt - dataObjectsCount_lt: BigInt - dataObjectsCount_lte: BigInt - dataObjectsCount_in: [BigInt!] - dataObjectsSize_eq: BigInt - dataObjectsSize_gt: BigInt - dataObjectsSize_gte: BigInt - dataObjectsSize_lt: BigInt - dataObjectsSize_lte: BigInt - dataObjectsSize_in: [BigInt!] - operatorMetadata: StorageBucketOperatorMetadataWhereInput - bags_none: StorageBagWhereInput - bags_some: StorageBagWhereInput - bags_every: StorageBagWhereInput - AND: [StorageBucketWhereInput!] - OR: [StorageBucketWhereInput!] - NOT: [StorageBucketWhereInput!] + question_eq: String + question_contains: String + question_startsWith: String + question_endsWith: String + question_in: [String!] + type_eq: ApplicationFormQuestionType + type_in: [ApplicationFormQuestionType!] + index_eq: Int + index_gt: Int + index_gte: Int + index_lt: Int + index_lte: Int + index_in: [Int!] + openingMetadata: WorkingGroupOpeningMetadataWhereInput + applicationformquestionanswerquestion_none: ApplicationFormQuestionAnswerWhereInput + applicationformquestionanswerquestion_some: ApplicationFormQuestionAnswerWhereInput + applicationformquestionanswerquestion_every: ApplicationFormQuestionAnswerWhereInput + AND: [ApplicationFormQuestionWhereInput!] + OR: [ApplicationFormQuestionWhereInput!] + NOT: [ApplicationFormQuestionWhereInput!] } -input StorageBucketWhereUniqueInput { +input ApplicationFormQuestionWhereUniqueInput { id: ID! } -input StorageBucketCreateInput { - operatorStatus: JSONObject! - operatorMetadata: ID - acceptingNewBags: Boolean! - dataObjectsSizeLimit: String! - dataObjectCountLimit: String! - dataObjectsCount: String! - dataObjectsSize: String! +input ApplicationFormQuestionCreateInput { + openingMetadata: ID! + question: String + type: ApplicationFormQuestionType! + index: Float! } -input StorageBucketUpdateInput { - operatorStatus: JSONObject - operatorMetadata: ID - acceptingNewBags: Boolean - dataObjectsSizeLimit: String - dataObjectCountLimit: String - dataObjectsCount: String - dataObjectsSize: String +input ApplicationFormQuestionUpdateInput { + openingMetadata: ID + question: String + type: ApplicationFormQuestionType + index: Float } -input StorageBagWhereInput { +input WorkingGroupOpeningMetadataWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12491,42 +12136,78 @@ input StorageBagWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - objectsSize_eq: BigInt - objectsSize_gt: BigInt - objectsSize_gte: BigInt - objectsSize_lt: BigInt - objectsSize_lte: BigInt - objectsSize_in: [BigInt!] - owner_json: JSONObject - objects_none: StorageDataObjectWhereInput - objects_some: StorageDataObjectWhereInput - objects_every: StorageDataObjectWhereInput - storageBuckets_none: StorageBucketWhereInput - storageBuckets_some: StorageBucketWhereInput - storageBuckets_every: StorageBucketWhereInput - distributionBuckets_none: DistributionBucketWhereInput - distributionBuckets_some: DistributionBucketWhereInput - distributionBuckets_every: DistributionBucketWhereInput - AND: [StorageBagWhereInput!] - OR: [StorageBagWhereInput!] - NOT: [StorageBagWhereInput!] + originallyValid_eq: Boolean + originallyValid_in: [Boolean!] + title_eq: String + title_contains: String + title_startsWith: String + title_endsWith: String + title_in: [String!] + shortDescription_eq: String + shortDescription_contains: String + shortDescription_startsWith: String + shortDescription_endsWith: String + shortDescription_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + hiringLimit_eq: Int + hiringLimit_gt: Int + hiringLimit_gte: Int + hiringLimit_lt: Int + hiringLimit_lte: Int + hiringLimit_in: [Int!] + expectedEnding_eq: DateTime + expectedEnding_lt: DateTime + expectedEnding_lte: DateTime + expectedEnding_gt: DateTime + expectedEnding_gte: DateTime + applicationDetails_eq: String + applicationDetails_contains: String + applicationDetails_startsWith: String + applicationDetails_endsWith: String + applicationDetails_in: [String!] + applicationFormQuestions_none: ApplicationFormQuestionWhereInput + applicationFormQuestions_some: ApplicationFormQuestionWhereInput + applicationFormQuestions_every: ApplicationFormQuestionWhereInput + upcomingworkinggroupopeningmetadata_none: UpcomingWorkingGroupOpeningWhereInput + upcomingworkinggroupopeningmetadata_some: UpcomingWorkingGroupOpeningWhereInput + upcomingworkinggroupopeningmetadata_every: UpcomingWorkingGroupOpeningWhereInput + workinggroupopeningmetadata_none: WorkingGroupOpeningWhereInput + workinggroupopeningmetadata_some: WorkingGroupOpeningWhereInput + workinggroupopeningmetadata_every: WorkingGroupOpeningWhereInput + AND: [WorkingGroupOpeningMetadataWhereInput!] + OR: [WorkingGroupOpeningMetadataWhereInput!] + NOT: [WorkingGroupOpeningMetadataWhereInput!] } -input StorageBagWhereUniqueInput { +input WorkingGroupOpeningMetadataWhereUniqueInput { id: ID! } -input StorageBagCreateInput { - objectsSize: String! - owner: JSONObject! +input WorkingGroupOpeningMetadataCreateInput { + originallyValid: Boolean! + title: String + shortDescription: String + description: String + hiringLimit: Float + expectedEnding: DateTime + applicationDetails: String } -input StorageBagUpdateInput { - objectsSize: String - owner: JSONObject +input WorkingGroupOpeningMetadataUpdateInput { + originallyValid: Boolean + title: String + shortDescription: String + description: String + hiringLimit: Float + expectedEnding: DateTime + applicationDetails: String } -input ChannelNftCollectorsWhereInput { +input UpcomingWorkingGroupOpeningWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12551,46 +12232,54 @@ input ChannelNftCollectorsWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - amount_eq: Int - amount_gt: Int - amount_gte: Int - amount_lt: Int - amount_lte: Int - amount_in: [Int!] - lastIncreaseAt_eq: DateTime - lastIncreaseAt_lt: DateTime - lastIncreaseAt_lte: DateTime - lastIncreaseAt_gt: DateTime - lastIncreaseAt_gte: DateTime - channel: ChannelWhereInput - member: MembershipWhereInput - curatorGroup: CuratorGroupWhereInput - AND: [ChannelNftCollectorsWhereInput!] - OR: [ChannelNftCollectorsWhereInput!] - NOT: [ChannelNftCollectorsWhereInput!] + expectedStart_eq: DateTime + expectedStart_lt: DateTime + expectedStart_lte: DateTime + expectedStart_gt: DateTime + expectedStart_gte: DateTime + stakeAmount_eq: BigInt + stakeAmount_gt: BigInt + stakeAmount_gte: BigInt + stakeAmount_lt: BigInt + stakeAmount_lte: BigInt + stakeAmount_in: [BigInt!] + rewardPerBlock_eq: BigInt + rewardPerBlock_gt: BigInt + rewardPerBlock_gte: BigInt + rewardPerBlock_lt: BigInt + rewardPerBlock_lte: BigInt + rewardPerBlock_in: [BigInt!] + createdInEvent: StatusTextChangedEventWhereInput + group: WorkingGroupWhereInput + metadata: WorkingGroupOpeningMetadataWhereInput + AND: [UpcomingWorkingGroupOpeningWhereInput!] + OR: [UpcomingWorkingGroupOpeningWhereInput!] + NOT: [UpcomingWorkingGroupOpeningWhereInput!] } -input ChannelNftCollectorsWhereUniqueInput { +input UpcomingWorkingGroupOpeningWhereUniqueInput { id: ID! } -input ChannelNftCollectorsCreateInput { - channel: ID! - member: ID - curatorGroup: ID - amount: Float! - lastIncreaseAt: DateTime! +input UpcomingWorkingGroupOpeningCreateInput { + createdInEvent: ID! + group: ID! + expectedStart: DateTime + stakeAmount: String + rewardPerBlock: String + metadata: ID! } -input ChannelNftCollectorsUpdateInput { - channel: ID - member: ID - curatorGroup: ID - amount: Float - lastIncreaseAt: DateTime +input UpcomingWorkingGroupOpeningUpdateInput { + createdInEvent: ID + group: ID + expectedStart: DateTime + stakeAmount: String + rewardPerBlock: String + metadata: ID } -input CuratorWhereInput { +input StatusTextChangedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12615,33 +12304,68 @@ input CuratorWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - dummy_eq: Int - dummy_gt: Int - dummy_gte: Int - dummy_lt: Int - dummy_lte: Int - dummy_in: [Int!] - curatorGroups_none: CuratorAgentPermissionsWhereInput - curatorGroups_some: CuratorAgentPermissionsWhereInput - curatorGroups_every: CuratorAgentPermissionsWhereInput - AND: [CuratorWhereInput!] - OR: [CuratorWhereInput!] - NOT: [CuratorWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + metadata_eq: String + metadata_contains: String + metadata_startsWith: String + metadata_endsWith: String + metadata_in: [String!] + result_json: JSONObject + group: WorkingGroupWhereInput + upcomingworkinggroupopeningcreatedInEvent_none: UpcomingWorkingGroupOpeningWhereInput + upcomingworkinggroupopeningcreatedInEvent_some: UpcomingWorkingGroupOpeningWhereInput + upcomingworkinggroupopeningcreatedInEvent_every: UpcomingWorkingGroupOpeningWhereInput + workinggroupmetadatasetInEvent_none: WorkingGroupMetadataWhereInput + workinggroupmetadatasetInEvent_some: WorkingGroupMetadataWhereInput + workinggroupmetadatasetInEvent_every: WorkingGroupMetadataWhereInput + AND: [StatusTextChangedEventWhereInput!] + OR: [StatusTextChangedEventWhereInput!] + NOT: [StatusTextChangedEventWhereInput!] } -input CuratorWhereUniqueInput { +input StatusTextChangedEventWhereUniqueInput { id: ID! } -input CuratorCreateInput { - dummy: Float +input StatusTextChangedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + metadata: String + result: JSONObject! } -input CuratorUpdateInput { - dummy: Float +input StatusTextChangedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + metadata: String + result: JSONObject } -input CuratorAgentPermissionsWhereInput { +input WorkingGroupMetadataWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12666,33 +12390,59 @@ input CuratorAgentPermissionsWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - permissions_containsAll: [String!] - permissions_containsNone: [String!] - permissions_containsAny: [String!] - curatorGroup: CuratorGroupWhereInput - curator: CuratorWhereInput - AND: [CuratorAgentPermissionsWhereInput!] - OR: [CuratorAgentPermissionsWhereInput!] - NOT: [CuratorAgentPermissionsWhereInput!] + status_eq: String + status_contains: String + status_startsWith: String + status_endsWith: String + status_in: [String!] + statusMessage_eq: String + statusMessage_contains: String + statusMessage_startsWith: String + statusMessage_endsWith: String + statusMessage_in: [String!] + about_eq: String + about_contains: String + about_startsWith: String + about_endsWith: String + about_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + setInEvent: StatusTextChangedEventWhereInput + group: WorkingGroupWhereInput + workinggroupmetadata_none: WorkingGroupWhereInput + workinggroupmetadata_some: WorkingGroupWhereInput + workinggroupmetadata_every: WorkingGroupWhereInput + AND: [WorkingGroupMetadataWhereInput!] + OR: [WorkingGroupMetadataWhereInput!] + NOT: [WorkingGroupMetadataWhereInput!] } -input CuratorAgentPermissionsWhereUniqueInput { +input WorkingGroupMetadataWhereUniqueInput { id: ID! } -input CuratorAgentPermissionsCreateInput { - curatorGroup: ID! - curator: ID! - permissions: [String!]! +input WorkingGroupMetadataCreateInput { + status: String + statusMessage: String + about: String + description: String + setInEvent: ID! + group: ID! } -input CuratorAgentPermissionsUpdateInput { - curatorGroup: ID - curator: ID - permissions: [String!] +input WorkingGroupMetadataUpdateInput { + status: String + statusMessage: String + about: String + description: String + setInEvent: ID + group: ID } -input AuctionBidCanceledEventWhereInput { +input BudgetFundedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12736,42 +12486,51 @@ input AuctionBidCanceledEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + group: WorkingGroupWhereInput member: MembershipWhereInput - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [AuctionBidCanceledEventWhereInput!] - OR: [AuctionBidCanceledEventWhereInput!] - NOT: [AuctionBidCanceledEventWhereInput!] + AND: [BudgetFundedEventWhereInput!] + OR: [BudgetFundedEventWhereInput!] + NOT: [BudgetFundedEventWhereInput!] } -input AuctionBidCanceledEventWhereUniqueInput { +input BudgetFundedEventWhereUniqueInput { id: ID! } -input AuctionBidCanceledEventCreateInput { +input BudgetFundedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! + group: ID! member: ID! - video: ID! - ownerMember: ID - ownerCuratorGroup: ID + rationale: String! + amount: String! } -input AuctionBidCanceledEventUpdateInput { +input BudgetFundedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float + group: ID member: ID - video: ID - ownerMember: ID - ownerCuratorGroup: ID + rationale: String + amount: String } -input NftIssuedEventWhereInput { +input BudgetSetEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12815,145 +12574,41 @@ input NftIssuedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - contentActor_json: JSONObject - royalty_eq: Float - royalty_gt: Float - royalty_gte: Float - royalty_lt: Float - royalty_lte: Float - royalty_in: [Float!] - metadata_eq: String - metadata_contains: String - metadata_startsWith: String - metadata_endsWith: String - metadata_in: [String!] - video: VideoWhereInput - videoCategory: VideoCategoryWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [NftIssuedEventWhereInput!] - OR: [NftIssuedEventWhereInput!] - NOT: [NftIssuedEventWhereInput!] -} - -input NftIssuedEventWhereUniqueInput { - id: ID! -} - -input NftIssuedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - contentActor: JSONObject! - video: ID! - videoCategory: ID - royalty: Float - metadata: String! - ownerMember: ID - ownerCuratorGroup: ID -} - -input NftIssuedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - contentActor: JSONObject - video: ID - videoCategory: ID - royalty: Float - metadata: String - ownerMember: ID - ownerCuratorGroup: ID -} - -input VideoCategoryWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - name_eq: String - name_contains: String - name_startsWith: String - name_endsWith: String - name_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - activeVideosCounter_eq: Int - activeVideosCounter_gt: Int - activeVideosCounter_gte: Int - activeVideosCounter_lt: Int - activeVideosCounter_lte: Int - activeVideosCounter_in: [Int!] - createdInBlock_eq: Int - createdInBlock_gt: Int - createdInBlock_gte: Int - createdInBlock_lt: Int - createdInBlock_lte: Int - createdInBlock_in: [Int!] - parentCategory: VideoCategoryWhereInput - videos_none: VideoWhereInput - videos_some: VideoWhereInput - videos_every: VideoWhereInput - nfts_none: OwnedNftWhereInput - nfts_some: OwnedNftWhereInput - nfts_every: OwnedNftWhereInput - nftissuedeventvideoCategory_none: NftIssuedEventWhereInput - nftissuedeventvideoCategory_some: NftIssuedEventWhereInput - nftissuedeventvideoCategory_every: NftIssuedEventWhereInput - videocategoryparentCategory_none: VideoCategoryWhereInput - videocategoryparentCategory_some: VideoCategoryWhereInput - videocategoryparentCategory_every: VideoCategoryWhereInput - AND: [VideoCategoryWhereInput!] - OR: [VideoCategoryWhereInput!] - NOT: [VideoCategoryWhereInput!] + newBudget_eq: BigInt + newBudget_gt: BigInt + newBudget_gte: BigInt + newBudget_lt: BigInt + newBudget_lte: BigInt + newBudget_in: [BigInt!] + group: WorkingGroupWhereInput + AND: [BudgetSetEventWhereInput!] + OR: [BudgetSetEventWhereInput!] + NOT: [BudgetSetEventWhereInput!] } -input VideoCategoryWhereUniqueInput { +input BudgetSetEventWhereUniqueInput { id: ID! } -input VideoCategoryCreateInput { - name: String - description: String - activeVideosCounter: Float! - parentCategory: ID - createdInBlock: Float! -} - -input VideoCategoryUpdateInput { - name: String - description: String - activeVideosCounter: Float - parentCategory: ID - createdInBlock: Float +input BudgetSetEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + newBudget: String! } -input TransactionalStatusUpdateWhereInput { +input BudgetSetEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + newBudget: String +} + +input BudgetSpendingEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12978,39 +12633,74 @@ input TransactionalStatusUpdateWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - transactionalStatus_json: JSONObject - changedAt_eq: Int - changedAt_gt: Int - changedAt_gte: Int - changedAt_lt: Int - changedAt_lte: Int - changedAt_in: [Int!] - nft: OwnedNftWhereInput - transactionalStatusAuction: AuctionWhereInput - AND: [TransactionalStatusUpdateWhereInput!] - OR: [TransactionalStatusUpdateWhereInput!] - NOT: [TransactionalStatusUpdateWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + reciever_eq: String + reciever_contains: String + reciever_startsWith: String + reciever_endsWith: String + reciever_in: [String!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + group: WorkingGroupWhereInput + AND: [BudgetSpendingEventWhereInput!] + OR: [BudgetSpendingEventWhereInput!] + NOT: [BudgetSpendingEventWhereInput!] } -input TransactionalStatusUpdateWhereUniqueInput { +input BudgetSpendingEventWhereUniqueInput { id: ID! } -input TransactionalStatusUpdateCreateInput { - nft: ID! - transactionalStatus: JSONObject! - transactionalStatusAuction: ID - changedAt: Float! +input BudgetSpendingEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + reciever: String! + amount: String! + rationale: String } -input TransactionalStatusUpdateUpdateInput { - nft: ID - transactionalStatus: JSONObject - transactionalStatusAuction: ID - changedAt: Float +input BudgetSpendingEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + reciever: String + amount: String + rationale: String } -input OwnedNftWhereInput { +input BudgetUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13035,84 +12725,60 @@ input OwnedNftWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - metadata_eq: String - metadata_contains: String - metadata_startsWith: String - metadata_endsWith: String - metadata_in: [String!] - transactionalStatus_json: JSONObject - creatorRoyalty_eq: Float - creatorRoyalty_gt: Float - creatorRoyalty_gte: Float - creatorRoyalty_lt: Float - creatorRoyalty_lte: Float - creatorRoyalty_in: [Float!] - isOwnedByChannel_eq: Boolean - isOwnedByChannel_in: [Boolean!] - lastSalePrice_eq: BigInt - lastSalePrice_gt: BigInt - lastSalePrice_gte: BigInt - lastSalePrice_lt: BigInt - lastSalePrice_lte: BigInt - lastSalePrice_in: [BigInt!] - lastSaleDate_eq: DateTime - lastSaleDate_lt: DateTime - lastSaleDate_lte: DateTime - lastSaleDate_gt: DateTime - lastSaleDate_gte: DateTime - video: VideoWhereInput - videoCategory: VideoCategoryWhereInput - auctions_none: AuctionWhereInput - auctions_some: AuctionWhereInput - auctions_every: AuctionWhereInput - ownerMember: MembershipWhereInput - transactionalStatusAuction: AuctionWhereInput - transactionalStatusUpdates_none: TransactionalStatusUpdateWhereInput - transactionalStatusUpdates_some: TransactionalStatusUpdateWhereInput - transactionalStatusUpdates_every: TransactionalStatusUpdateWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - creatorChannel: ChannelWhereInput - bids_none: BidWhereInput - bids_some: BidWhereInput - bids_every: BidWhereInput - AND: [OwnedNftWhereInput!] - OR: [OwnedNftWhereInput!] - NOT: [OwnedNftWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + budgetChangeAmount_eq: BigInt + budgetChangeAmount_gt: BigInt + budgetChangeAmount_gte: BigInt + budgetChangeAmount_lt: BigInt + budgetChangeAmount_lte: BigInt + budgetChangeAmount_in: [BigInt!] + group: WorkingGroupWhereInput + AND: [BudgetUpdatedEventWhereInput!] + OR: [BudgetUpdatedEventWhereInput!] + NOT: [BudgetUpdatedEventWhereInput!] } -input OwnedNftWhereUniqueInput { +input BudgetUpdatedEventWhereUniqueInput { id: ID! } -input OwnedNftCreateInput { - videoCategory: ID - ownerMember: ID - metadata: String! - transactionalStatus: JSONObject! - transactionalStatusAuction: ID - creatorRoyalty: Float - ownerCuratorGroup: ID - isOwnedByChannel: Boolean! - creatorChannel: ID! - lastSalePrice: String - lastSaleDate: DateTime +input BudgetUpdatedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + budgetChangeAmount: String! } -input OwnedNftUpdateInput { - videoCategory: ID - ownerMember: ID - metadata: String - transactionalStatus: JSONObject - transactionalStatusAuction: ID - creatorRoyalty: Float - ownerCuratorGroup: ID - isOwnedByChannel: Boolean - creatorChannel: ID - lastSalePrice: String - lastSaleDate: DateTime +input BudgetUpdatedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + budgetChangeAmount: String } -input EnglishAuctionStartedEventWhereInput { +input WorkingGroupWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13137,64 +12803,128 @@ input EnglishAuctionStartedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - actor_json: JSONObject - video: VideoWhereInput - auction: AuctionWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [EnglishAuctionStartedEventWhereInput!] - OR: [EnglishAuctionStartedEventWhereInput!] - NOT: [EnglishAuctionStartedEventWhereInput!] + name_eq: String + name_contains: String + name_startsWith: String + name_endsWith: String + name_in: [String!] + budget_eq: BigInt + budget_gt: BigInt + budget_gte: BigInt + budget_lt: BigInt + budget_lte: BigInt + budget_in: [BigInt!] + metadata: WorkingGroupMetadataWhereInput + leader: WorkerWhereInput + workers_none: WorkerWhereInput + workers_some: WorkerWhereInput + workers_every: WorkerWhereInput + openings_none: WorkingGroupOpeningWhereInput + openings_some: WorkingGroupOpeningWhereInput + openings_every: WorkingGroupOpeningWhereInput + applicationwithdrawneventgroup_none: ApplicationWithdrawnEventWhereInput + applicationwithdrawneventgroup_some: ApplicationWithdrawnEventWhereInput + applicationwithdrawneventgroup_every: ApplicationWithdrawnEventWhereInput + appliedonopeningeventgroup_none: AppliedOnOpeningEventWhereInput + appliedonopeningeventgroup_some: AppliedOnOpeningEventWhereInput + appliedonopeningeventgroup_every: AppliedOnOpeningEventWhereInput + budgetfundedeventgroup_none: BudgetFundedEventWhereInput + budgetfundedeventgroup_some: BudgetFundedEventWhereInput + budgetfundedeventgroup_every: BudgetFundedEventWhereInput + budgetseteventgroup_none: BudgetSetEventWhereInput + budgetseteventgroup_some: BudgetSetEventWhereInput + budgetseteventgroup_every: BudgetSetEventWhereInput + budgetspendingeventgroup_none: BudgetSpendingEventWhereInput + budgetspendingeventgroup_some: BudgetSpendingEventWhereInput + budgetspendingeventgroup_every: BudgetSpendingEventWhereInput + budgetupdatedeventgroup_none: BudgetUpdatedEventWhereInput + budgetupdatedeventgroup_some: BudgetUpdatedEventWhereInput + budgetupdatedeventgroup_every: BudgetUpdatedEventWhereInput + leaderseteventgroup_none: LeaderSetEventWhereInput + leaderseteventgroup_some: LeaderSetEventWhereInput + leaderseteventgroup_every: LeaderSetEventWhereInput + leaderunseteventgroup_none: LeaderUnsetEventWhereInput + leaderunseteventgroup_some: LeaderUnsetEventWhereInput + leaderunseteventgroup_every: LeaderUnsetEventWhereInput + newmissedrewardlevelreachedeventgroup_none: NewMissedRewardLevelReachedEventWhereInput + newmissedrewardlevelreachedeventgroup_some: NewMissedRewardLevelReachedEventWhereInput + newmissedrewardlevelreachedeventgroup_every: NewMissedRewardLevelReachedEventWhereInput + openingaddedeventgroup_none: OpeningAddedEventWhereInput + openingaddedeventgroup_some: OpeningAddedEventWhereInput + openingaddedeventgroup_every: OpeningAddedEventWhereInput + openingcanceledeventgroup_none: OpeningCanceledEventWhereInput + openingcanceledeventgroup_some: OpeningCanceledEventWhereInput + openingcanceledeventgroup_every: OpeningCanceledEventWhereInput + openingfilledeventgroup_none: OpeningFilledEventWhereInput + openingfilledeventgroup_some: OpeningFilledEventWhereInput + openingfilledeventgroup_every: OpeningFilledEventWhereInput + rewardpaideventgroup_none: RewardPaidEventWhereInput + rewardpaideventgroup_some: RewardPaidEventWhereInput + rewardpaideventgroup_every: RewardPaidEventWhereInput + stakedecreasedeventgroup_none: StakeDecreasedEventWhereInput + stakedecreasedeventgroup_some: StakeDecreasedEventWhereInput + stakedecreasedeventgroup_every: StakeDecreasedEventWhereInput + stakeincreasedeventgroup_none: StakeIncreasedEventWhereInput + stakeincreasedeventgroup_some: StakeIncreasedEventWhereInput + stakeincreasedeventgroup_every: StakeIncreasedEventWhereInput + stakeslashedeventgroup_none: StakeSlashedEventWhereInput + stakeslashedeventgroup_some: StakeSlashedEventWhereInput + stakeslashedeventgroup_every: StakeSlashedEventWhereInput + statustextchangedeventgroup_none: StatusTextChangedEventWhereInput + statustextchangedeventgroup_some: StatusTextChangedEventWhereInput + statustextchangedeventgroup_every: StatusTextChangedEventWhereInput + terminatedleadereventgroup_none: TerminatedLeaderEventWhereInput + terminatedleadereventgroup_some: TerminatedLeaderEventWhereInput + terminatedleadereventgroup_every: TerminatedLeaderEventWhereInput + terminatedworkereventgroup_none: TerminatedWorkerEventWhereInput + terminatedworkereventgroup_some: TerminatedWorkerEventWhereInput + terminatedworkereventgroup_every: TerminatedWorkerEventWhereInput + upcomingworkinggroupopeninggroup_none: UpcomingWorkingGroupOpeningWhereInput + upcomingworkinggroupopeninggroup_some: UpcomingWorkingGroupOpeningWhereInput + upcomingworkinggroupopeninggroup_every: UpcomingWorkingGroupOpeningWhereInput + workerexitedeventgroup_none: WorkerExitedEventWhereInput + workerexitedeventgroup_some: WorkerExitedEventWhereInput + workerexitedeventgroup_every: WorkerExitedEventWhereInput + workerrewardaccountupdatedeventgroup_none: WorkerRewardAccountUpdatedEventWhereInput + workerrewardaccountupdatedeventgroup_some: WorkerRewardAccountUpdatedEventWhereInput + workerrewardaccountupdatedeventgroup_every: WorkerRewardAccountUpdatedEventWhereInput + workerrewardamountupdatedeventgroup_none: WorkerRewardAmountUpdatedEventWhereInput + workerrewardamountupdatedeventgroup_some: WorkerRewardAmountUpdatedEventWhereInput + workerrewardamountupdatedeventgroup_every: WorkerRewardAmountUpdatedEventWhereInput + workerroleaccountupdatedeventgroup_none: WorkerRoleAccountUpdatedEventWhereInput + workerroleaccountupdatedeventgroup_some: WorkerRoleAccountUpdatedEventWhereInput + workerroleaccountupdatedeventgroup_every: WorkerRoleAccountUpdatedEventWhereInput + workerstartedleavingeventgroup_none: WorkerStartedLeavingEventWhereInput + workerstartedleavingeventgroup_some: WorkerStartedLeavingEventWhereInput + workerstartedleavingeventgroup_every: WorkerStartedLeavingEventWhereInput + workinggroupmetadatagroup_none: WorkingGroupMetadataWhereInput + workinggroupmetadatagroup_some: WorkingGroupMetadataWhereInput + workinggroupmetadatagroup_every: WorkingGroupMetadataWhereInput + AND: [WorkingGroupWhereInput!] + OR: [WorkingGroupWhereInput!] + NOT: [WorkingGroupWhereInput!] } -input EnglishAuctionStartedEventWhereUniqueInput { - id: ID! +input WorkingGroupWhereUniqueInput { + id: ID + name: String } -input EnglishAuctionStartedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - actor: JSONObject! - video: ID! - auction: ID! - ownerMember: ID - ownerCuratorGroup: ID +input WorkingGroupCreateInput { + name: String! + metadata: ID + leader: ID + budget: String! } -input EnglishAuctionStartedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - actor: JSONObject - video: ID - auction: ID - ownerMember: ID - ownerCuratorGroup: ID +input WorkingGroupUpdateInput { + name: String + metadata: ID + leader: ID + budget: String } -input OpenAuctionStartedEventWhereInput { +input OpeningFilledEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13238,45 +12968,39 @@ input OpenAuctionStartedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - actor_json: JSONObject - video: VideoWhereInput - auction: AuctionWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [OpenAuctionStartedEventWhereInput!] - OR: [OpenAuctionStartedEventWhereInput!] - NOT: [OpenAuctionStartedEventWhereInput!] + group: WorkingGroupWhereInput + opening: WorkingGroupOpeningWhereInput + workersHired_none: WorkerWhereInput + workersHired_some: WorkerWhereInput + workersHired_every: WorkerWhereInput + AND: [OpeningFilledEventWhereInput!] + OR: [OpeningFilledEventWhereInput!] + NOT: [OpeningFilledEventWhereInput!] } -input OpenAuctionStartedEventWhereUniqueInput { +input OpeningFilledEventWhereUniqueInput { id: ID! } -input OpenAuctionStartedEventCreateInput { +input OpeningFilledEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - actor: JSONObject! - video: ID! - auction: ID! - ownerMember: ID - ownerCuratorGroup: ID + group: ID! + opening: ID! } -input OpenAuctionStartedEventUpdateInput { +input OpeningFilledEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - actor: JSONObject - video: ID - auction: ID - ownerMember: ID - ownerCuratorGroup: ID + group: ID + opening: ID } -input AuctionWhereInput { +input GeoCoordinatesWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13301,95 +13025,41 @@ input AuctionWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - startingPrice_eq: BigInt - startingPrice_gt: BigInt - startingPrice_gte: BigInt - startingPrice_lt: BigInt - startingPrice_lte: BigInt - startingPrice_in: [BigInt!] - buyNowPrice_eq: BigInt - buyNowPrice_gt: BigInt - buyNowPrice_gte: BigInt - buyNowPrice_lt: BigInt - buyNowPrice_lte: BigInt - buyNowPrice_in: [BigInt!] - auctionType_json: JSONObject - startsAtBlock_eq: Int - startsAtBlock_gt: Int - startsAtBlock_gte: Int - startsAtBlock_lt: Int - startsAtBlock_lte: Int - startsAtBlock_in: [Int!] - endedAtBlock_eq: Int - endedAtBlock_gt: Int - endedAtBlock_gte: Int - endedAtBlock_lt: Int - endedAtBlock_lte: Int - endedAtBlock_in: [Int!] - isCanceled_eq: Boolean - isCanceled_in: [Boolean!] - isCompleted_eq: Boolean - isCompleted_in: [Boolean!] - nft: OwnedNftWhereInput - initialOwner: MembershipWhereInput - winningMember: MembershipWhereInput - topBid: BidWhereInput - bids_none: BidWhereInput - bids_some: BidWhereInput - bids_every: BidWhereInput - whitelistedMembers_none: MembershipWhereInput - whitelistedMembers_some: MembershipWhereInput - whitelistedMembers_every: MembershipWhereInput - englishauctionstartedeventauction_none: EnglishAuctionStartedEventWhereInput - englishauctionstartedeventauction_some: EnglishAuctionStartedEventWhereInput - englishauctionstartedeventauction_every: EnglishAuctionStartedEventWhereInput - openauctionstartedeventauction_none: OpenAuctionStartedEventWhereInput - openauctionstartedeventauction_some: OpenAuctionStartedEventWhereInput - openauctionstartedeventauction_every: OpenAuctionStartedEventWhereInput - ownednfttransactionalStatusAuction_none: OwnedNftWhereInput - ownednfttransactionalStatusAuction_some: OwnedNftWhereInput - ownednfttransactionalStatusAuction_every: OwnedNftWhereInput - transactionalstatusupdatetransactionalStatusAuction_none: TransactionalStatusUpdateWhereInput - transactionalstatusupdatetransactionalStatusAuction_some: TransactionalStatusUpdateWhereInput - transactionalstatusupdatetransactionalStatusAuction_every: TransactionalStatusUpdateWhereInput - AND: [AuctionWhereInput!] - OR: [AuctionWhereInput!] - NOT: [AuctionWhereInput!] -} - -input AuctionWhereUniqueInput { - id: ID! -} - -input AuctionCreateInput { - nft: ID! - initialOwner: ID - winningMember: ID - startingPrice: String! - buyNowPrice: String - auctionType: JSONObject! - topBid: ID - startsAtBlock: Float! - endedAtBlock: Float - isCanceled: Boolean! - isCompleted: Boolean! + latitude_eq: Float + latitude_gt: Float + latitude_gte: Float + latitude_lt: Float + latitude_lte: Float + latitude_in: [Float!] + longitude_eq: Float + longitude_gt: Float + longitude_gte: Float + longitude_lt: Float + longitude_lte: Float + longitude_in: [Float!] + nodelocationmetadatacoordinates_none: NodeLocationMetadataWhereInput + nodelocationmetadatacoordinates_some: NodeLocationMetadataWhereInput + nodelocationmetadatacoordinates_every: NodeLocationMetadataWhereInput + AND: [GeoCoordinatesWhereInput!] + OR: [GeoCoordinatesWhereInput!] + NOT: [GeoCoordinatesWhereInput!] } -input AuctionUpdateInput { - nft: ID - initialOwner: ID - winningMember: ID - startingPrice: String - buyNowPrice: String - auctionType: JSONObject - topBid: ID - startsAtBlock: Float - endedAtBlock: Float - isCanceled: Boolean - isCompleted: Boolean +input GeoCoordinatesWhereUniqueInput { + id: ID! } -input BidMadeCompletingAuctionEventWhereInput { +input GeoCoordinatesCreateInput { + latitude: Float! + longitude: Float! +} + +input GeoCoordinatesUpdateInput { + latitude: Float + longitude: Float +} + +input DistributionBucketFamilyGeographicAreaWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13414,81 +13084,28 @@ input BidMadeCompletingAuctionEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - price_eq: BigInt - price_gt: BigInt - price_gte: BigInt - price_lt: BigInt - price_lte: BigInt - price_in: [BigInt!] - member: MembershipWhereInput - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - winningBid: BidWhereInput - previousTopBid: BidWhereInput - previousTopBidder: MembershipWhereInput - bidders_none: MembershipWhereInput - bidders_some: MembershipWhereInput - bidders_every: MembershipWhereInput - AND: [BidMadeCompletingAuctionEventWhereInput!] - OR: [BidMadeCompletingAuctionEventWhereInput!] - NOT: [BidMadeCompletingAuctionEventWhereInput!] + area_json: JSONObject + distributionBucketFamilyMetadata: DistributionBucketFamilyMetadataWhereInput + AND: [DistributionBucketFamilyGeographicAreaWhereInput!] + OR: [DistributionBucketFamilyGeographicAreaWhereInput!] + NOT: [DistributionBucketFamilyGeographicAreaWhereInput!] } -input BidMadeCompletingAuctionEventWhereUniqueInput { +input DistributionBucketFamilyGeographicAreaWhereUniqueInput { id: ID! } -input BidMadeCompletingAuctionEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - member: ID! - video: ID! - ownerMember: ID - ownerCuratorGroup: ID - price: String! - winningBid: ID! - previousTopBid: ID - previousTopBidder: ID +input DistributionBucketFamilyGeographicAreaCreateInput { + area: JSONObject! + distributionBucketFamilyMetadata: ID! } -input BidMadeCompletingAuctionEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - member: ID - video: ID - ownerMember: ID - ownerCuratorGroup: ID - price: String - winningBid: ID - previousTopBid: ID - previousTopBidder: ID +input DistributionBucketFamilyGeographicAreaUpdateInput { + area: JSONObject + distributionBucketFamilyMetadata: ID } -input EnglishAuctionSettledEventWhereInput { +input DistributionBucketFamilyMetadataWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13513,67 +13130,47 @@ input EnglishAuctionSettledEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - winner: MembershipWhereInput - winningBid: BidWhereInput - video: VideoWhereInput - bidders_none: MembershipWhereInput - bidders_some: MembershipWhereInput - bidders_every: MembershipWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [EnglishAuctionSettledEventWhereInput!] - OR: [EnglishAuctionSettledEventWhereInput!] - NOT: [EnglishAuctionSettledEventWhereInput!] + region_eq: String + region_contains: String + region_startsWith: String + region_endsWith: String + region_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + latencyTestTargets_containsAll: [String!] + latencyTestTargets_containsNone: [String!] + latencyTestTargets_containsAny: [String!] + areas_none: DistributionBucketFamilyGeographicAreaWhereInput + areas_some: DistributionBucketFamilyGeographicAreaWhereInput + areas_every: DistributionBucketFamilyGeographicAreaWhereInput + distributionbucketfamilymetadata_none: DistributionBucketFamilyWhereInput + distributionbucketfamilymetadata_some: DistributionBucketFamilyWhereInput + distributionbucketfamilymetadata_every: DistributionBucketFamilyWhereInput + AND: [DistributionBucketFamilyMetadataWhereInput!] + OR: [DistributionBucketFamilyMetadataWhereInput!] + NOT: [DistributionBucketFamilyMetadataWhereInput!] } -input EnglishAuctionSettledEventWhereUniqueInput { +input DistributionBucketFamilyMetadataWhereUniqueInput { id: ID! } -input EnglishAuctionSettledEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - winner: ID! - winningBid: ID! - video: ID! - ownerMember: ID - ownerCuratorGroup: ID +input DistributionBucketFamilyMetadataCreateInput { + region: String + description: String + latencyTestTargets: [String!] } -input EnglishAuctionSettledEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - winner: ID - winningBid: ID - video: ID - ownerMember: ID - ownerCuratorGroup: ID +input DistributionBucketFamilyMetadataUpdateInput { + region: String + description: String + latencyTestTargets: [String!] } -input OpenAuctionBidAcceptedEventWhereInput { +input DistributionBucketFamilyWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13598,70 +13195,28 @@ input OpenAuctionBidAcceptedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - contentActor_json: JSONObject - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - winningBid: BidWhereInput - winningBidder: MembershipWhereInput - bidders_none: MembershipWhereInput - bidders_some: MembershipWhereInput - bidders_every: MembershipWhereInput - AND: [OpenAuctionBidAcceptedEventWhereInput!] - OR: [OpenAuctionBidAcceptedEventWhereInput!] - NOT: [OpenAuctionBidAcceptedEventWhereInput!] + metadata: DistributionBucketFamilyMetadataWhereInput + buckets_none: DistributionBucketWhereInput + buckets_some: DistributionBucketWhereInput + buckets_every: DistributionBucketWhereInput + AND: [DistributionBucketFamilyWhereInput!] + OR: [DistributionBucketFamilyWhereInput!] + NOT: [DistributionBucketFamilyWhereInput!] } -input OpenAuctionBidAcceptedEventWhereUniqueInput { +input DistributionBucketFamilyWhereUniqueInput { id: ID! } -input OpenAuctionBidAcceptedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - contentActor: JSONObject! - video: ID! - ownerMember: ID - ownerCuratorGroup: ID - winningBid: ID - winningBidder: ID -} - -input OpenAuctionBidAcceptedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - contentActor: JSONObject - video: ID - ownerMember: ID - ownerCuratorGroup: ID - winningBid: ID - winningBidder: ID -} - -input BidWhereInput { +input DistributionBucketFamilyCreateInput { + metadata: ID +} + +input DistributionBucketFamilyUpdateInput { + metadata: ID +} + +input DistributionBucketWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13686,75 +13241,47 @@ input BidWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - isCanceled_eq: Boolean - isCanceled_in: [Boolean!] - createdInBlock_eq: Int - createdInBlock_gt: Int - createdInBlock_gte: Int - createdInBlock_lt: Int - createdInBlock_lte: Int - createdInBlock_in: [Int!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - auction: AuctionWhereInput - nft: OwnedNftWhereInput - auctionTopBid: AuctionWhereInput - bidder: MembershipWhereInput - auctionbidmadeeventpreviousTopBid_none: AuctionBidMadeEventWhereInput - auctionbidmadeeventpreviousTopBid_some: AuctionBidMadeEventWhereInput - auctionbidmadeeventpreviousTopBid_every: AuctionBidMadeEventWhereInput - bidmadecompletingauctioneventwinningBid_none: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventwinningBid_some: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventwinningBid_every: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventpreviousTopBid_none: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventpreviousTopBid_some: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventpreviousTopBid_every: BidMadeCompletingAuctionEventWhereInput - englishauctionsettledeventwinningBid_none: EnglishAuctionSettledEventWhereInput - englishauctionsettledeventwinningBid_some: EnglishAuctionSettledEventWhereInput - englishauctionsettledeventwinningBid_every: EnglishAuctionSettledEventWhereInput - openauctionbidacceptedeventwinningBid_none: OpenAuctionBidAcceptedEventWhereInput - openauctionbidacceptedeventwinningBid_some: OpenAuctionBidAcceptedEventWhereInput - openauctionbidacceptedeventwinningBid_every: OpenAuctionBidAcceptedEventWhereInput - AND: [BidWhereInput!] - OR: [BidWhereInput!] - NOT: [BidWhereInput!] + bucketIndex_eq: Int + bucketIndex_gt: Int + bucketIndex_gte: Int + bucketIndex_lt: Int + bucketIndex_lte: Int + bucketIndex_in: [Int!] + acceptingNewBags_eq: Boolean + acceptingNewBags_in: [Boolean!] + distributing_eq: Boolean + distributing_in: [Boolean!] + family: DistributionBucketFamilyWhereInput + operators_none: DistributionBucketOperatorWhereInput + operators_some: DistributionBucketOperatorWhereInput + operators_every: DistributionBucketOperatorWhereInput + bags_none: StorageBagWhereInput + bags_some: StorageBagWhereInput + bags_every: StorageBagWhereInput + AND: [DistributionBucketWhereInput!] + OR: [DistributionBucketWhereInput!] + NOT: [DistributionBucketWhereInput!] } -input BidWhereUniqueInput { +input DistributionBucketWhereUniqueInput { id: ID! } -input BidCreateInput { - auction: ID! - nft: ID! - bidder: ID! - amount: String! - isCanceled: Boolean! - createdInBlock: Float! - indexInBlock: Float! +input DistributionBucketCreateInput { + family: ID! + bucketIndex: Float! + acceptingNewBags: Boolean! + distributing: Boolean! } -input BidUpdateInput { - auction: ID - nft: ID - bidder: ID - amount: String - isCanceled: Boolean - createdInBlock: Float - indexInBlock: Float +input DistributionBucketUpdateInput { + family: ID + bucketIndex: Float + acceptingNewBags: Boolean + distributing: Boolean } -input AuctionBidMadeEventWhereInput { +input DistributionBucketOperatorWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13779,75 +13306,40 @@ input AuctionBidMadeEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - bidAmount_eq: BigInt - bidAmount_gt: BigInt - bidAmount_gte: BigInt - bidAmount_lt: BigInt - bidAmount_lte: BigInt - bidAmount_in: [BigInt!] - member: MembershipWhereInput - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - previousTopBid: BidWhereInput - previousTopBidder: MembershipWhereInput - AND: [AuctionBidMadeEventWhereInput!] - OR: [AuctionBidMadeEventWhereInput!] - NOT: [AuctionBidMadeEventWhereInput!] + workerId_eq: Int + workerId_gt: Int + workerId_gte: Int + workerId_lt: Int + workerId_lte: Int + workerId_in: [Int!] + status_eq: DistributionBucketOperatorStatus + status_in: [DistributionBucketOperatorStatus!] + distributionBucket: DistributionBucketWhereInput + metadata: DistributionBucketOperatorMetadataWhereInput + AND: [DistributionBucketOperatorWhereInput!] + OR: [DistributionBucketOperatorWhereInput!] + NOT: [DistributionBucketOperatorWhereInput!] } -input AuctionBidMadeEventWhereUniqueInput { +input DistributionBucketOperatorWhereUniqueInput { id: ID! } -input AuctionBidMadeEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - member: ID! - video: ID! - bidAmount: String! - ownerMember: ID - ownerCuratorGroup: ID - previousTopBid: ID - previousTopBidder: ID +input DistributionBucketOperatorCreateInput { + distributionBucket: ID! + workerId: Float! + status: DistributionBucketOperatorStatus! + metadata: ID } -input AuctionBidMadeEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - member: ID - video: ID - bidAmount: String - ownerMember: ID - ownerCuratorGroup: ID - previousTopBid: ID - previousTopBidder: ID +input DistributionBucketOperatorUpdateInput { + distributionBucket: ID + workerId: Float + status: DistributionBucketOperatorStatus + metadata: ID } -input AuctionCanceledEventWhereInput { +input DistributionBucketOperatorMetadataWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13872,61 +13364,42 @@ input AuctionCanceledEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - contentActor_json: JSONObject - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [AuctionCanceledEventWhereInput!] - OR: [AuctionCanceledEventWhereInput!] - NOT: [AuctionCanceledEventWhereInput!] + nodeEndpoint_eq: String + nodeEndpoint_contains: String + nodeEndpoint_startsWith: String + nodeEndpoint_endsWith: String + nodeEndpoint_in: [String!] + extra_eq: String + extra_contains: String + extra_startsWith: String + extra_endsWith: String + extra_in: [String!] + nodeLocation: NodeLocationMetadataWhereInput + distributionbucketoperatormetadata_none: DistributionBucketOperatorWhereInput + distributionbucketoperatormetadata_some: DistributionBucketOperatorWhereInput + distributionbucketoperatormetadata_every: DistributionBucketOperatorWhereInput + AND: [DistributionBucketOperatorMetadataWhereInput!] + OR: [DistributionBucketOperatorMetadataWhereInput!] + NOT: [DistributionBucketOperatorMetadataWhereInput!] } -input AuctionCanceledEventWhereUniqueInput { +input DistributionBucketOperatorMetadataWhereUniqueInput { id: ID! } -input AuctionCanceledEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - contentActor: JSONObject! - video: ID! - ownerMember: ID - ownerCuratorGroup: ID -} - -input AuctionCanceledEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - contentActor: JSONObject - video: ID - ownerMember: ID - ownerCuratorGroup: ID +input DistributionBucketOperatorMetadataCreateInput { + nodeEndpoint: String + nodeLocation: ID + extra: String } -input BuyNowCanceledEventWhereInput { +input DistributionBucketOperatorMetadataUpdateInput { + nodeEndpoint: String + nodeLocation: ID + extra: String +} + +input NodeLocationMetadataWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13951,61 +13424,45 @@ input BuyNowCanceledEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - contentActor_json: JSONObject - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [BuyNowCanceledEventWhereInput!] - OR: [BuyNowCanceledEventWhereInput!] - NOT: [BuyNowCanceledEventWhereInput!] + countryCode_eq: String + countryCode_contains: String + countryCode_startsWith: String + countryCode_endsWith: String + countryCode_in: [String!] + city_eq: String + city_contains: String + city_startsWith: String + city_endsWith: String + city_in: [String!] + coordinates: GeoCoordinatesWhereInput + distributionbucketoperatormetadatanodeLocation_none: DistributionBucketOperatorMetadataWhereInput + distributionbucketoperatormetadatanodeLocation_some: DistributionBucketOperatorMetadataWhereInput + distributionbucketoperatormetadatanodeLocation_every: DistributionBucketOperatorMetadataWhereInput + storagebucketoperatormetadatanodeLocation_none: StorageBucketOperatorMetadataWhereInput + storagebucketoperatormetadatanodeLocation_some: StorageBucketOperatorMetadataWhereInput + storagebucketoperatormetadatanodeLocation_every: StorageBucketOperatorMetadataWhereInput + AND: [NodeLocationMetadataWhereInput!] + OR: [NodeLocationMetadataWhereInput!] + NOT: [NodeLocationMetadataWhereInput!] } -input BuyNowCanceledEventWhereUniqueInput { +input NodeLocationMetadataWhereUniqueInput { id: ID! } -input BuyNowCanceledEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - video: ID! - contentActor: JSONObject! - ownerMember: ID - ownerCuratorGroup: ID +input NodeLocationMetadataCreateInput { + countryCode: String + city: String + coordinates: ID } -input BuyNowCanceledEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - video: ID - contentActor: JSONObject - ownerMember: ID - ownerCuratorGroup: ID +input NodeLocationMetadataUpdateInput { + countryCode: String + city: String + coordinates: ID } -input BuyNowPriceUpdatedEventWhereInput { +input StorageBucketOperatorMetadataWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14030,69 +13487,42 @@ input BuyNowPriceUpdatedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - contentActor_json: JSONObject - newPrice_eq: BigInt - newPrice_gt: BigInt - newPrice_gte: BigInt - newPrice_lt: BigInt - newPrice_lte: BigInt - newPrice_in: [BigInt!] - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [BuyNowPriceUpdatedEventWhereInput!] - OR: [BuyNowPriceUpdatedEventWhereInput!] - NOT: [BuyNowPriceUpdatedEventWhereInput!] + nodeEndpoint_eq: String + nodeEndpoint_contains: String + nodeEndpoint_startsWith: String + nodeEndpoint_endsWith: String + nodeEndpoint_in: [String!] + extra_eq: String + extra_contains: String + extra_startsWith: String + extra_endsWith: String + extra_in: [String!] + nodeLocation: NodeLocationMetadataWhereInput + storagebucketoperatorMetadata_none: StorageBucketWhereInput + storagebucketoperatorMetadata_some: StorageBucketWhereInput + storagebucketoperatorMetadata_every: StorageBucketWhereInput + AND: [StorageBucketOperatorMetadataWhereInput!] + OR: [StorageBucketOperatorMetadataWhereInput!] + NOT: [StorageBucketOperatorMetadataWhereInput!] } -input BuyNowPriceUpdatedEventWhereUniqueInput { +input StorageBucketOperatorMetadataWhereUniqueInput { id: ID! } -input BuyNowPriceUpdatedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - video: ID! - contentActor: JSONObject! - newPrice: String! - ownerMember: ID - ownerCuratorGroup: ID +input StorageBucketOperatorMetadataCreateInput { + nodeEndpoint: String + nodeLocation: ID + extra: String } -input BuyNowPriceUpdatedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - video: ID - contentActor: JSONObject - newPrice: String - ownerMember: ID - ownerCuratorGroup: ID +input StorageBucketOperatorMetadataUpdateInput { + nodeEndpoint: String + nodeLocation: ID + extra: String } -input NftBoughtEventWhereInput { +input StorageBucketWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14117,69 +13547,127 @@ input NftBoughtEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - price_eq: BigInt - price_gt: BigInt - price_gte: BigInt - price_lt: BigInt - price_lte: BigInt - price_in: [BigInt!] - video: VideoWhereInput - member: MembershipWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [NftBoughtEventWhereInput!] - OR: [NftBoughtEventWhereInput!] - NOT: [NftBoughtEventWhereInput!] + operatorStatus_json: JSONObject + acceptingNewBags_eq: Boolean + acceptingNewBags_in: [Boolean!] + dataObjectsSizeLimit_eq: BigInt + dataObjectsSizeLimit_gt: BigInt + dataObjectsSizeLimit_gte: BigInt + dataObjectsSizeLimit_lt: BigInt + dataObjectsSizeLimit_lte: BigInt + dataObjectsSizeLimit_in: [BigInt!] + dataObjectCountLimit_eq: BigInt + dataObjectCountLimit_gt: BigInt + dataObjectCountLimit_gte: BigInt + dataObjectCountLimit_lt: BigInt + dataObjectCountLimit_lte: BigInt + dataObjectCountLimit_in: [BigInt!] + dataObjectsCount_eq: BigInt + dataObjectsCount_gt: BigInt + dataObjectsCount_gte: BigInt + dataObjectsCount_lt: BigInt + dataObjectsCount_lte: BigInt + dataObjectsCount_in: [BigInt!] + dataObjectsSize_eq: BigInt + dataObjectsSize_gt: BigInt + dataObjectsSize_gte: BigInt + dataObjectsSize_lt: BigInt + dataObjectsSize_lte: BigInt + dataObjectsSize_in: [BigInt!] + operatorMetadata: StorageBucketOperatorMetadataWhereInput + bags_none: StorageBagWhereInput + bags_some: StorageBagWhereInput + bags_every: StorageBagWhereInput + AND: [StorageBucketWhereInput!] + OR: [StorageBucketWhereInput!] + NOT: [StorageBucketWhereInput!] +} + +input StorageBucketWhereUniqueInput { + id: ID! +} + +input StorageBucketCreateInput { + operatorStatus: JSONObject! + operatorMetadata: ID + acceptingNewBags: Boolean! + dataObjectsSizeLimit: String! + dataObjectCountLimit: String! + dataObjectsCount: String! + dataObjectsSize: String! +} + +input StorageBucketUpdateInput { + operatorStatus: JSONObject + operatorMetadata: ID + acceptingNewBags: Boolean + dataObjectsSizeLimit: String + dataObjectCountLimit: String + dataObjectsCount: String + dataObjectsSize: String +} + +input StorageBagWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + objectsSize_eq: BigInt + objectsSize_gt: BigInt + objectsSize_gte: BigInt + objectsSize_lt: BigInt + objectsSize_lte: BigInt + objectsSize_in: [BigInt!] + owner_json: JSONObject + objects_none: StorageDataObjectWhereInput + objects_some: StorageDataObjectWhereInput + objects_every: StorageDataObjectWhereInput + storageBuckets_none: StorageBucketWhereInput + storageBuckets_some: StorageBucketWhereInput + storageBuckets_every: StorageBucketWhereInput + distributionBuckets_none: DistributionBucketWhereInput + distributionBuckets_some: DistributionBucketWhereInput + distributionBuckets_every: DistributionBucketWhereInput + AND: [StorageBagWhereInput!] + OR: [StorageBagWhereInput!] + NOT: [StorageBagWhereInput!] } -input NftBoughtEventWhereUniqueInput { +input StorageBagWhereUniqueInput { id: ID! } -input NftBoughtEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - video: ID! - member: ID! - ownerMember: ID - ownerCuratorGroup: ID - price: String! +input StorageBagCreateInput { + objectsSize: String! + owner: JSONObject! } -input NftBoughtEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - video: ID - member: ID - ownerMember: ID - ownerCuratorGroup: ID - price: String +input StorageBagUpdateInput { + objectsSize: String + owner: JSONObject } -input NftSellOrderMadeEventWhereInput { +input ChannelNftCollectorsWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14204,69 +13692,46 @@ input NftSellOrderMadeEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - contentActor_json: JSONObject - price_eq: BigInt - price_gt: BigInt - price_gte: BigInt - price_lt: BigInt - price_lte: BigInt - price_in: [BigInt!] - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [NftSellOrderMadeEventWhereInput!] - OR: [NftSellOrderMadeEventWhereInput!] - NOT: [NftSellOrderMadeEventWhereInput!] + amount_eq: Int + amount_gt: Int + amount_gte: Int + amount_lt: Int + amount_lte: Int + amount_in: [Int!] + lastIncreaseAt_eq: DateTime + lastIncreaseAt_lt: DateTime + lastIncreaseAt_lte: DateTime + lastIncreaseAt_gt: DateTime + lastIncreaseAt_gte: DateTime + channel: ChannelWhereInput + member: MembershipWhereInput + curatorGroup: CuratorGroupWhereInput + AND: [ChannelNftCollectorsWhereInput!] + OR: [ChannelNftCollectorsWhereInput!] + NOT: [ChannelNftCollectorsWhereInput!] } -input NftSellOrderMadeEventWhereUniqueInput { +input ChannelNftCollectorsWhereUniqueInput { id: ID! } -input NftSellOrderMadeEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - video: ID! - contentActor: JSONObject! - ownerMember: ID - ownerCuratorGroup: ID - price: String! +input ChannelNftCollectorsCreateInput { + channel: ID! + member: ID + curatorGroup: ID + amount: Float! + lastIncreaseAt: DateTime! } -input NftSellOrderMadeEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - video: ID - contentActor: JSONObject - ownerMember: ID - ownerCuratorGroup: ID - price: String +input ChannelNftCollectorsUpdateInput { + channel: ID + member: ID + curatorGroup: ID + amount: Float + lastIncreaseAt: DateTime } -input NftSlingedBackToTheOriginalArtistEventWhereInput { +input CuratorWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14291,61 +13756,33 @@ input NftSlingedBackToTheOriginalArtistEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - contentActor_json: JSONObject - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [NftSlingedBackToTheOriginalArtistEventWhereInput!] - OR: [NftSlingedBackToTheOriginalArtistEventWhereInput!] - NOT: [NftSlingedBackToTheOriginalArtistEventWhereInput!] + dummy_eq: Int + dummy_gt: Int + dummy_gte: Int + dummy_lt: Int + dummy_lte: Int + dummy_in: [Int!] + curatorGroups_none: CuratorAgentPermissionsWhereInput + curatorGroups_some: CuratorAgentPermissionsWhereInput + curatorGroups_every: CuratorAgentPermissionsWhereInput + AND: [CuratorWhereInput!] + OR: [CuratorWhereInput!] + NOT: [CuratorWhereInput!] } -input NftSlingedBackToTheOriginalArtistEventWhereUniqueInput { +input CuratorWhereUniqueInput { id: ID! } -input NftSlingedBackToTheOriginalArtistEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - video: ID! - contentActor: JSONObject! - ownerMember: ID - ownerCuratorGroup: ID +input CuratorCreateInput { + dummy: Float } -input NftSlingedBackToTheOriginalArtistEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - video: ID - contentActor: JSONObject - ownerMember: ID - ownerCuratorGroup: ID +input CuratorUpdateInput { + dummy: Float } -input OfferAcceptedEventWhereInput { +input CuratorAgentPermissionsWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14370,66 +13807,33 @@ input OfferAcceptedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - price_eq: BigInt - price_gt: BigInt - price_gte: BigInt - price_lt: BigInt - price_lte: BigInt - price_in: [BigInt!] - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [OfferAcceptedEventWhereInput!] - OR: [OfferAcceptedEventWhereInput!] - NOT: [OfferAcceptedEventWhereInput!] + permissions_containsAll: [String!] + permissions_containsNone: [String!] + permissions_containsAny: [String!] + curatorGroup: CuratorGroupWhereInput + curator: CuratorWhereInput + AND: [CuratorAgentPermissionsWhereInput!] + OR: [CuratorAgentPermissionsWhereInput!] + NOT: [CuratorAgentPermissionsWhereInput!] } -input OfferAcceptedEventWhereUniqueInput { +input CuratorAgentPermissionsWhereUniqueInput { id: ID! } -input OfferAcceptedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - video: ID! - ownerMember: ID - ownerCuratorGroup: ID - price: String +input CuratorAgentPermissionsCreateInput { + curatorGroup: ID! + curator: ID! + permissions: [String!]! } -input OfferAcceptedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - video: ID - ownerMember: ID - ownerCuratorGroup: ID - price: String +input CuratorAgentPermissionsUpdateInput { + curatorGroup: ID + curator: ID + permissions: [String!] } -input OfferCanceledEventWhereInput { +input AuctionBidCanceledEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14473,42 +13877,42 @@ input OfferCanceledEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - contentActor_json: JSONObject + member: MembershipWhereInput video: VideoWhereInput ownerMember: MembershipWhereInput ownerCuratorGroup: CuratorGroupWhereInput - AND: [OfferCanceledEventWhereInput!] - OR: [OfferCanceledEventWhereInput!] - NOT: [OfferCanceledEventWhereInput!] + AND: [AuctionBidCanceledEventWhereInput!] + OR: [AuctionBidCanceledEventWhereInput!] + NOT: [AuctionBidCanceledEventWhereInput!] } -input OfferCanceledEventWhereUniqueInput { +input AuctionBidCanceledEventWhereUniqueInput { id: ID! } -input OfferCanceledEventCreateInput { +input AuctionBidCanceledEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! + member: ID! video: ID! - contentActor: JSONObject! ownerMember: ID ownerCuratorGroup: ID } -input OfferCanceledEventUpdateInput { +input AuctionBidCanceledEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float + member: ID video: ID - contentActor: JSONObject ownerMember: ID ownerCuratorGroup: ID } -input OfferStartedEventWhereInput { +input NftIssuedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14553,52 +13957,59 @@ input OfferStartedEventWhereInput { indexInBlock_lte: Int indexInBlock_in: [Int!] contentActor_json: JSONObject - price_eq: BigInt - price_gt: BigInt - price_gte: BigInt - price_lt: BigInt - price_lte: BigInt - price_in: [BigInt!] + royalty_eq: Float + royalty_gt: Float + royalty_gte: Float + royalty_lt: Float + royalty_lte: Float + royalty_in: [Float!] + metadata_eq: String + metadata_contains: String + metadata_startsWith: String + metadata_endsWith: String + metadata_in: [String!] video: VideoWhereInput - member: MembershipWhereInput + videoCategory: VideoCategoryWhereInput ownerMember: MembershipWhereInput ownerCuratorGroup: CuratorGroupWhereInput - AND: [OfferStartedEventWhereInput!] - OR: [OfferStartedEventWhereInput!] - NOT: [OfferStartedEventWhereInput!] + AND: [NftIssuedEventWhereInput!] + OR: [NftIssuedEventWhereInput!] + NOT: [NftIssuedEventWhereInput!] } -input OfferStartedEventWhereUniqueInput { +input NftIssuedEventWhereUniqueInput { id: ID! } -input OfferStartedEventCreateInput { +input NftIssuedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - video: ID! contentActor: JSONObject! - member: ID! - price: String + video: ID! + videoCategory: ID + royalty: Float + metadata: String! ownerMember: ID ownerCuratorGroup: ID } -input OfferStartedEventUpdateInput { +input NftIssuedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - video: ID contentActor: JSONObject - member: ID - price: String + video: ID + videoCategory: ID + royalty: Float + metadata: String ownerMember: ID ownerCuratorGroup: ID } -input CuratorGroupWhereInput { +input VideoCategoryWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14623,89 +14034,67 @@ input CuratorGroupWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - isActive_eq: Boolean - isActive_in: [Boolean!] - channels_none: ChannelWhereInput - channels_some: ChannelWhereInput - channels_every: ChannelWhereInput - nftCollectorInChannels_none: ChannelNftCollectorsWhereInput - nftCollectorInChannels_some: ChannelNftCollectorsWhereInput - nftCollectorInChannels_every: ChannelNftCollectorsWhereInput - curators_none: CuratorAgentPermissionsWhereInput - curators_some: CuratorAgentPermissionsWhereInput - curators_every: CuratorAgentPermissionsWhereInput - auctionbidcanceledeventownerCuratorGroup_none: AuctionBidCanceledEventWhereInput - auctionbidcanceledeventownerCuratorGroup_some: AuctionBidCanceledEventWhereInput - auctionbidcanceledeventownerCuratorGroup_every: AuctionBidCanceledEventWhereInput - auctionbidmadeeventownerCuratorGroup_none: AuctionBidMadeEventWhereInput - auctionbidmadeeventownerCuratorGroup_some: AuctionBidMadeEventWhereInput - auctionbidmadeeventownerCuratorGroup_every: AuctionBidMadeEventWhereInput - auctioncanceledeventownerCuratorGroup_none: AuctionCanceledEventWhereInput - auctioncanceledeventownerCuratorGroup_some: AuctionCanceledEventWhereInput - auctioncanceledeventownerCuratorGroup_every: AuctionCanceledEventWhereInput - bidmadecompletingauctioneventownerCuratorGroup_none: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventownerCuratorGroup_some: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventownerCuratorGroup_every: BidMadeCompletingAuctionEventWhereInput - buynowcanceledeventownerCuratorGroup_none: BuyNowCanceledEventWhereInput - buynowcanceledeventownerCuratorGroup_some: BuyNowCanceledEventWhereInput - buynowcanceledeventownerCuratorGroup_every: BuyNowCanceledEventWhereInput - buynowpriceupdatedeventownerCuratorGroup_none: BuyNowPriceUpdatedEventWhereInput - buynowpriceupdatedeventownerCuratorGroup_some: BuyNowPriceUpdatedEventWhereInput - buynowpriceupdatedeventownerCuratorGroup_every: BuyNowPriceUpdatedEventWhereInput - englishauctionsettledeventownerCuratorGroup_none: EnglishAuctionSettledEventWhereInput - englishauctionsettledeventownerCuratorGroup_some: EnglishAuctionSettledEventWhereInput - englishauctionsettledeventownerCuratorGroup_every: EnglishAuctionSettledEventWhereInput - englishauctionstartedeventownerCuratorGroup_none: EnglishAuctionStartedEventWhereInput - englishauctionstartedeventownerCuratorGroup_some: EnglishAuctionStartedEventWhereInput - englishauctionstartedeventownerCuratorGroup_every: EnglishAuctionStartedEventWhereInput - nftboughteventownerCuratorGroup_none: NftBoughtEventWhereInput - nftboughteventownerCuratorGroup_some: NftBoughtEventWhereInput - nftboughteventownerCuratorGroup_every: NftBoughtEventWhereInput - nftissuedeventownerCuratorGroup_none: NftIssuedEventWhereInput - nftissuedeventownerCuratorGroup_some: NftIssuedEventWhereInput - nftissuedeventownerCuratorGroup_every: NftIssuedEventWhereInput - nftsellordermadeeventownerCuratorGroup_none: NftSellOrderMadeEventWhereInput - nftsellordermadeeventownerCuratorGroup_some: NftSellOrderMadeEventWhereInput - nftsellordermadeeventownerCuratorGroup_every: NftSellOrderMadeEventWhereInput - nftslingedbacktotheoriginalartisteventownerCuratorGroup_none: NftSlingedBackToTheOriginalArtistEventWhereInput - nftslingedbacktotheoriginalartisteventownerCuratorGroup_some: NftSlingedBackToTheOriginalArtistEventWhereInput - nftslingedbacktotheoriginalartisteventownerCuratorGroup_every: NftSlingedBackToTheOriginalArtistEventWhereInput - offeracceptedeventownerCuratorGroup_none: OfferAcceptedEventWhereInput - offeracceptedeventownerCuratorGroup_some: OfferAcceptedEventWhereInput - offeracceptedeventownerCuratorGroup_every: OfferAcceptedEventWhereInput - offercanceledeventownerCuratorGroup_none: OfferCanceledEventWhereInput - offercanceledeventownerCuratorGroup_some: OfferCanceledEventWhereInput - offercanceledeventownerCuratorGroup_every: OfferCanceledEventWhereInput - offerstartedeventownerCuratorGroup_none: OfferStartedEventWhereInput - offerstartedeventownerCuratorGroup_some: OfferStartedEventWhereInput - offerstartedeventownerCuratorGroup_every: OfferStartedEventWhereInput - openauctionbidacceptedeventownerCuratorGroup_none: OpenAuctionBidAcceptedEventWhereInput - openauctionbidacceptedeventownerCuratorGroup_some: OpenAuctionBidAcceptedEventWhereInput - openauctionbidacceptedeventownerCuratorGroup_every: OpenAuctionBidAcceptedEventWhereInput - openauctionstartedeventownerCuratorGroup_none: OpenAuctionStartedEventWhereInput - openauctionstartedeventownerCuratorGroup_some: OpenAuctionStartedEventWhereInput - openauctionstartedeventownerCuratorGroup_every: OpenAuctionStartedEventWhereInput - ownednftownerCuratorGroup_none: OwnedNftWhereInput - ownednftownerCuratorGroup_some: OwnedNftWhereInput - ownednftownerCuratorGroup_every: OwnedNftWhereInput - AND: [CuratorGroupWhereInput!] - OR: [CuratorGroupWhereInput!] - NOT: [CuratorGroupWhereInput!] + name_eq: String + name_contains: String + name_startsWith: String + name_endsWith: String + name_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + activeVideosCounter_eq: Int + activeVideosCounter_gt: Int + activeVideosCounter_gte: Int + activeVideosCounter_lt: Int + activeVideosCounter_lte: Int + activeVideosCounter_in: [Int!] + createdInBlock_eq: Int + createdInBlock_gt: Int + createdInBlock_gte: Int + createdInBlock_lt: Int + createdInBlock_lte: Int + createdInBlock_in: [Int!] + parentCategory: VideoCategoryWhereInput + videos_none: VideoWhereInput + videos_some: VideoWhereInput + videos_every: VideoWhereInput + nfts_none: OwnedNftWhereInput + nfts_some: OwnedNftWhereInput + nfts_every: OwnedNftWhereInput + nftissuedeventvideoCategory_none: NftIssuedEventWhereInput + nftissuedeventvideoCategory_some: NftIssuedEventWhereInput + nftissuedeventvideoCategory_every: NftIssuedEventWhereInput + videocategoryparentCategory_none: VideoCategoryWhereInput + videocategoryparentCategory_some: VideoCategoryWhereInput + videocategoryparentCategory_every: VideoCategoryWhereInput + AND: [VideoCategoryWhereInput!] + OR: [VideoCategoryWhereInput!] + NOT: [VideoCategoryWhereInput!] } -input CuratorGroupWhereUniqueInput { +input VideoCategoryWhereUniqueInput { id: ID! } -input CuratorGroupCreateInput { - isActive: Boolean! +input VideoCategoryCreateInput { + name: String + description: String + activeVideosCounter: Float! + parentCategory: ID + createdInBlock: Float! } -input CuratorGroupUpdateInput { - isActive: Boolean +input VideoCategoryUpdateInput { + name: String + description: String + activeVideosCounter: Float + parentCategory: ID + createdInBlock: Float } -input VideoSubtitleWhereInput { +input TransactionalStatusUpdateWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14730,45 +14119,39 @@ input VideoSubtitleWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - type_eq: String - type_contains: String - type_startsWith: String - type_endsWith: String - type_in: [String!] - mimeType_eq: String - mimeType_contains: String - mimeType_startsWith: String - mimeType_endsWith: String - mimeType_in: [String!] - video: VideoWhereInput - language: LanguageWhereInput - asset: StorageDataObjectWhereInput - AND: [VideoSubtitleWhereInput!] - OR: [VideoSubtitleWhereInput!] - NOT: [VideoSubtitleWhereInput!] + transactionalStatus_json: JSONObject + changedAt_eq: Int + changedAt_gt: Int + changedAt_gte: Int + changedAt_lt: Int + changedAt_lte: Int + changedAt_in: [Int!] + nft: OwnedNftWhereInput + transactionalStatusAuction: AuctionWhereInput + AND: [TransactionalStatusUpdateWhereInput!] + OR: [TransactionalStatusUpdateWhereInput!] + NOT: [TransactionalStatusUpdateWhereInput!] } -input VideoSubtitleWhereUniqueInput { +input TransactionalStatusUpdateWhereUniqueInput { id: ID! } -input VideoSubtitleCreateInput { - video: ID! - type: String! - language: ID - mimeType: String! - asset: ID +input TransactionalStatusUpdateCreateInput { + nft: ID! + transactionalStatus: JSONObject! + transactionalStatusAuction: ID + changedAt: Float! } -input VideoSubtitleUpdateInput { - video: ID - type: String - language: ID - mimeType: String - asset: ID +input TransactionalStatusUpdateUpdateInput { + nft: ID + transactionalStatus: JSONObject + transactionalStatusAuction: ID + changedAt: Float } -input LanguageWhereInput { +input OwnedNftWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14793,46 +14176,84 @@ input LanguageWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - iso_eq: String - iso_contains: String - iso_startsWith: String - iso_endsWith: String - iso_in: [String!] - createdInBlock_eq: Int - createdInBlock_gt: Int - createdInBlock_gte: Int - createdInBlock_lt: Int - createdInBlock_lte: Int - createdInBlock_in: [Int!] - channellanguage_none: ChannelWhereInput - channellanguage_some: ChannelWhereInput - channellanguage_every: ChannelWhereInput - videolanguage_none: VideoWhereInput - videolanguage_some: VideoWhereInput - videolanguage_every: VideoWhereInput - videosubtitlelanguage_none: VideoSubtitleWhereInput - videosubtitlelanguage_some: VideoSubtitleWhereInput - videosubtitlelanguage_every: VideoSubtitleWhereInput - AND: [LanguageWhereInput!] - OR: [LanguageWhereInput!] - NOT: [LanguageWhereInput!] + metadata_eq: String + metadata_contains: String + metadata_startsWith: String + metadata_endsWith: String + metadata_in: [String!] + transactionalStatus_json: JSONObject + creatorRoyalty_eq: Float + creatorRoyalty_gt: Float + creatorRoyalty_gte: Float + creatorRoyalty_lt: Float + creatorRoyalty_lte: Float + creatorRoyalty_in: [Float!] + isOwnedByChannel_eq: Boolean + isOwnedByChannel_in: [Boolean!] + lastSalePrice_eq: BigInt + lastSalePrice_gt: BigInt + lastSalePrice_gte: BigInt + lastSalePrice_lt: BigInt + lastSalePrice_lte: BigInt + lastSalePrice_in: [BigInt!] + lastSaleDate_eq: DateTime + lastSaleDate_lt: DateTime + lastSaleDate_lte: DateTime + lastSaleDate_gt: DateTime + lastSaleDate_gte: DateTime + video: VideoWhereInput + videoCategory: VideoCategoryWhereInput + auctions_none: AuctionWhereInput + auctions_some: AuctionWhereInput + auctions_every: AuctionWhereInput + ownerMember: MembershipWhereInput + transactionalStatusAuction: AuctionWhereInput + transactionalStatusUpdates_none: TransactionalStatusUpdateWhereInput + transactionalStatusUpdates_some: TransactionalStatusUpdateWhereInput + transactionalStatusUpdates_every: TransactionalStatusUpdateWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + creatorChannel: ChannelWhereInput + bids_none: BidWhereInput + bids_some: BidWhereInput + bids_every: BidWhereInput + AND: [OwnedNftWhereInput!] + OR: [OwnedNftWhereInput!] + NOT: [OwnedNftWhereInput!] } -input LanguageWhereUniqueInput { +input OwnedNftWhereUniqueInput { id: ID! } -input LanguageCreateInput { - iso: String! - createdInBlock: Float! +input OwnedNftCreateInput { + videoCategory: ID + ownerMember: ID + metadata: String! + transactionalStatus: JSONObject! + transactionalStatusAuction: ID + creatorRoyalty: Float + ownerCuratorGroup: ID + isOwnedByChannel: Boolean! + creatorChannel: ID! + lastSalePrice: String + lastSaleDate: DateTime } -input LanguageUpdateInput { - iso: String - createdInBlock: Float +input OwnedNftUpdateInput { + videoCategory: ID + ownerMember: ID + metadata: String + transactionalStatus: JSONObject + transactionalStatusAuction: ID + creatorRoyalty: Float + ownerCuratorGroup: ID + isOwnedByChannel: Boolean + creatorChannel: ID + lastSalePrice: String + lastSaleDate: DateTime } -input CollaboratorWhereInput { +input EnglishAuctionStartedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14857,33 +14278,64 @@ input CollaboratorWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - permissions_containsAll: [String!] - permissions_containsNone: [String!] - permissions_containsAny: [String!] - channel: ChannelWhereInput - member: MembershipWhereInput - AND: [CollaboratorWhereInput!] - OR: [CollaboratorWhereInput!] - NOT: [CollaboratorWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + actor_json: JSONObject + video: VideoWhereInput + auction: AuctionWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [EnglishAuctionStartedEventWhereInput!] + OR: [EnglishAuctionStartedEventWhereInput!] + NOT: [EnglishAuctionStartedEventWhereInput!] } -input CollaboratorWhereUniqueInput { +input EnglishAuctionStartedEventWhereUniqueInput { id: ID! } -input CollaboratorCreateInput { - channel: ID! - member: ID! - permissions: [String!]! +input EnglishAuctionStartedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + actor: JSONObject! + video: ID! + auction: ID! + ownerMember: ID + ownerCuratorGroup: ID } -input CollaboratorUpdateInput { - channel: ID - member: ID - permissions: [String!] +input EnglishAuctionStartedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + actor: JSONObject + video: ID + auction: ID + ownerMember: ID + ownerCuratorGroup: ID } -input ChannelRewardClaimedEventWhereInput { +input OpenAuctionStartedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14927,41 +14379,158 @@ input ChannelRewardClaimedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - channel: ChannelWhereInput - AND: [ChannelRewardClaimedEventWhereInput!] - OR: [ChannelRewardClaimedEventWhereInput!] - NOT: [ChannelRewardClaimedEventWhereInput!] + actor_json: JSONObject + video: VideoWhereInput + auction: AuctionWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [OpenAuctionStartedEventWhereInput!] + OR: [OpenAuctionStartedEventWhereInput!] + NOT: [OpenAuctionStartedEventWhereInput!] +} + +input OpenAuctionStartedEventWhereUniqueInput { + id: ID! +} + +input OpenAuctionStartedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + actor: JSONObject! + video: ID! + auction: ID! + ownerMember: ID + ownerCuratorGroup: ID +} + +input OpenAuctionStartedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + actor: JSONObject + video: ID + auction: ID + ownerMember: ID + ownerCuratorGroup: ID +} + +input AuctionWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + startingPrice_eq: BigInt + startingPrice_gt: BigInt + startingPrice_gte: BigInt + startingPrice_lt: BigInt + startingPrice_lte: BigInt + startingPrice_in: [BigInt!] + buyNowPrice_eq: BigInt + buyNowPrice_gt: BigInt + buyNowPrice_gte: BigInt + buyNowPrice_lt: BigInt + buyNowPrice_lte: BigInt + buyNowPrice_in: [BigInt!] + auctionType_json: JSONObject + startsAtBlock_eq: Int + startsAtBlock_gt: Int + startsAtBlock_gte: Int + startsAtBlock_lt: Int + startsAtBlock_lte: Int + startsAtBlock_in: [Int!] + endedAtBlock_eq: Int + endedAtBlock_gt: Int + endedAtBlock_gte: Int + endedAtBlock_lt: Int + endedAtBlock_lte: Int + endedAtBlock_in: [Int!] + isCanceled_eq: Boolean + isCanceled_in: [Boolean!] + isCompleted_eq: Boolean + isCompleted_in: [Boolean!] + nft: OwnedNftWhereInput + initialOwner: MembershipWhereInput + winningMember: MembershipWhereInput + topBid: BidWhereInput + bids_none: BidWhereInput + bids_some: BidWhereInput + bids_every: BidWhereInput + whitelistedMembers_none: MembershipWhereInput + whitelistedMembers_some: MembershipWhereInput + whitelistedMembers_every: MembershipWhereInput + englishauctionstartedeventauction_none: EnglishAuctionStartedEventWhereInput + englishauctionstartedeventauction_some: EnglishAuctionStartedEventWhereInput + englishauctionstartedeventauction_every: EnglishAuctionStartedEventWhereInput + openauctionstartedeventauction_none: OpenAuctionStartedEventWhereInput + openauctionstartedeventauction_some: OpenAuctionStartedEventWhereInput + openauctionstartedeventauction_every: OpenAuctionStartedEventWhereInput + ownednfttransactionalStatusAuction_none: OwnedNftWhereInput + ownednfttransactionalStatusAuction_some: OwnedNftWhereInput + ownednfttransactionalStatusAuction_every: OwnedNftWhereInput + transactionalstatusupdatetransactionalStatusAuction_none: TransactionalStatusUpdateWhereInput + transactionalstatusupdatetransactionalStatusAuction_some: TransactionalStatusUpdateWhereInput + transactionalstatusupdatetransactionalStatusAuction_every: TransactionalStatusUpdateWhereInput + AND: [AuctionWhereInput!] + OR: [AuctionWhereInput!] + NOT: [AuctionWhereInput!] } -input ChannelRewardClaimedEventWhereUniqueInput { +input AuctionWhereUniqueInput { id: ID! } -input ChannelRewardClaimedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - channel: ID! - amount: String! +input AuctionCreateInput { + nft: ID! + initialOwner: ID + winningMember: ID + startingPrice: String! + buyNowPrice: String + auctionType: JSONObject! + topBid: ID + startsAtBlock: Float! + endedAtBlock: Float + isCanceled: Boolean! + isCompleted: Boolean! } -input ChannelRewardClaimedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - channel: ID - amount: String +input AuctionUpdateInput { + nft: ID + initialOwner: ID + winningMember: ID + startingPrice: String + buyNowPrice: String + auctionType: JSONObject + topBid: ID + startsAtBlock: Float + endedAtBlock: Float + isCanceled: Boolean + isCompleted: Boolean } -input ChannelFundsWithdrawnEventWhereInput { +input BidMadeCompletingAuctionEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15005,51 +14574,62 @@ input ChannelFundsWithdrawnEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - account_eq: String - account_contains: String - account_startsWith: String - account_endsWith: String - account_in: [String!] - actor_json: JSONObject - channel: ChannelWhereInput - AND: [ChannelFundsWithdrawnEventWhereInput!] - OR: [ChannelFundsWithdrawnEventWhereInput!] - NOT: [ChannelFundsWithdrawnEventWhereInput!] + price_eq: BigInt + price_gt: BigInt + price_gte: BigInt + price_lt: BigInt + price_lte: BigInt + price_in: [BigInt!] + member: MembershipWhereInput + video: VideoWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + winningBid: BidWhereInput + previousTopBid: BidWhereInput + previousTopBidder: MembershipWhereInput + bidders_none: MembershipWhereInput + bidders_some: MembershipWhereInput + bidders_every: MembershipWhereInput + AND: [BidMadeCompletingAuctionEventWhereInput!] + OR: [BidMadeCompletingAuctionEventWhereInput!] + NOT: [BidMadeCompletingAuctionEventWhereInput!] } -input ChannelFundsWithdrawnEventWhereUniqueInput { +input BidMadeCompletingAuctionEventWhereUniqueInput { id: ID! } -input ChannelFundsWithdrawnEventCreateInput { +input BidMadeCompletingAuctionEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - channel: ID! - amount: String! - account: String - actor: JSONObject! + member: ID! + video: ID! + ownerMember: ID + ownerCuratorGroup: ID + price: String! + winningBid: ID! + previousTopBid: ID + previousTopBidder: ID } -input ChannelFundsWithdrawnEventUpdateInput { +input BidMadeCompletingAuctionEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - channel: ID - amount: String - account: String - actor: JSONObject + member: ID + video: ID + ownerMember: ID + ownerCuratorGroup: ID + price: String + winningBid: ID + previousTopBid: ID + previousTopBidder: ID } -input ChannelPaymentMadeEventWhereInput { +input EnglishAuctionSettledEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15093,54 +14673,48 @@ input ChannelPaymentMadeEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - paymentContext_json: JSONObject - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - payer: MembershipWhereInput - payeeChannel: ChannelWhereInput - AND: [ChannelPaymentMadeEventWhereInput!] - OR: [ChannelPaymentMadeEventWhereInput!] - NOT: [ChannelPaymentMadeEventWhereInput!] + winner: MembershipWhereInput + winningBid: BidWhereInput + video: VideoWhereInput + bidders_none: MembershipWhereInput + bidders_some: MembershipWhereInput + bidders_every: MembershipWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [EnglishAuctionSettledEventWhereInput!] + OR: [EnglishAuctionSettledEventWhereInput!] + NOT: [EnglishAuctionSettledEventWhereInput!] } -input ChannelPaymentMadeEventWhereUniqueInput { +input EnglishAuctionSettledEventWhereUniqueInput { id: ID! } -input ChannelPaymentMadeEventCreateInput { +input EnglishAuctionSettledEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - payer: ID! - amount: String! - paymentContext: JSONObject! - payeeChannel: ID - rationale: String + winner: ID! + winningBid: ID! + video: ID! + ownerMember: ID + ownerCuratorGroup: ID } -input ChannelPaymentMadeEventUpdateInput { +input EnglishAuctionSettledEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - payer: ID - amount: String - paymentContext: JSONObject - payeeChannel: ID - rationale: String + winner: ID + winningBid: ID + video: ID + ownerMember: ID + ownerCuratorGroup: ID } -input ChannelRewardClaimedAndWithdrawnEventWhereInput { +input OpenAuctionBidAcceptedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15175,60 +14749,60 @@ input ChannelRewardClaimedAndWithdrawnEventWhereInput { inBlock_gte: Int inBlock_lt: Int inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - account_eq: String - account_contains: String - account_startsWith: String - account_endsWith: String - account_in: [String!] - actor_json: JSONObject - channel: ChannelWhereInput - AND: [ChannelRewardClaimedAndWithdrawnEventWhereInput!] - OR: [ChannelRewardClaimedAndWithdrawnEventWhereInput!] - NOT: [ChannelRewardClaimedAndWithdrawnEventWhereInput!] + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + contentActor_json: JSONObject + video: VideoWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + winningBid: BidWhereInput + winningBidder: MembershipWhereInput + bidders_none: MembershipWhereInput + bidders_some: MembershipWhereInput + bidders_every: MembershipWhereInput + AND: [OpenAuctionBidAcceptedEventWhereInput!] + OR: [OpenAuctionBidAcceptedEventWhereInput!] + NOT: [OpenAuctionBidAcceptedEventWhereInput!] } -input ChannelRewardClaimedAndWithdrawnEventWhereUniqueInput { +input OpenAuctionBidAcceptedEventWhereUniqueInput { id: ID! } -input ChannelRewardClaimedAndWithdrawnEventCreateInput { +input OpenAuctionBidAcceptedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - channel: ID! - amount: String! - account: String - actor: JSONObject! + contentActor: JSONObject! + video: ID! + ownerMember: ID + ownerCuratorGroup: ID + winningBid: ID + winningBidder: ID } -input ChannelRewardClaimedAndWithdrawnEventUpdateInput { +input OpenAuctionBidAcceptedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - channel: ID - amount: String - account: String - actor: JSONObject + contentActor: JSONObject + video: ID + ownerMember: ID + ownerCuratorGroup: ID + winningBid: ID + winningBidder: ID } -input CommentReactionWhereInput { +input BidWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15253,46 +14827,75 @@ input CommentReactionWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - reactionId_eq: Int - reactionId_gt: Int - reactionId_gte: Int - reactionId_lt: Int - reactionId_lte: Int - reactionId_in: [Int!] - memberId_eq: String - memberId_contains: String - memberId_startsWith: String - memberId_endsWith: String - memberId_in: [String!] - member: MembershipWhereInput - comment: CommentWhereInput - video: VideoWhereInput - AND: [CommentReactionWhereInput!] - OR: [CommentReactionWhereInput!] - NOT: [CommentReactionWhereInput!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + isCanceled_eq: Boolean + isCanceled_in: [Boolean!] + createdInBlock_eq: Int + createdInBlock_gt: Int + createdInBlock_gte: Int + createdInBlock_lt: Int + createdInBlock_lte: Int + createdInBlock_in: [Int!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + auction: AuctionWhereInput + nft: OwnedNftWhereInput + auctionTopBid: AuctionWhereInput + bidder: MembershipWhereInput + auctionbidmadeeventpreviousTopBid_none: AuctionBidMadeEventWhereInput + auctionbidmadeeventpreviousTopBid_some: AuctionBidMadeEventWhereInput + auctionbidmadeeventpreviousTopBid_every: AuctionBidMadeEventWhereInput + bidmadecompletingauctioneventwinningBid_none: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventwinningBid_some: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventwinningBid_every: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventpreviousTopBid_none: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventpreviousTopBid_some: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventpreviousTopBid_every: BidMadeCompletingAuctionEventWhereInput + englishauctionsettledeventwinningBid_none: EnglishAuctionSettledEventWhereInput + englishauctionsettledeventwinningBid_some: EnglishAuctionSettledEventWhereInput + englishauctionsettledeventwinningBid_every: EnglishAuctionSettledEventWhereInput + openauctionbidacceptedeventwinningBid_none: OpenAuctionBidAcceptedEventWhereInput + openauctionbidacceptedeventwinningBid_some: OpenAuctionBidAcceptedEventWhereInput + openauctionbidacceptedeventwinningBid_every: OpenAuctionBidAcceptedEventWhereInput + AND: [BidWhereInput!] + OR: [BidWhereInput!] + NOT: [BidWhereInput!] } -input CommentReactionWhereUniqueInput { +input BidWhereUniqueInput { id: ID! } -input CommentReactionCreateInput { - reactionId: Float! - member: ID! - memberId: String! - comment: ID! - video: ID! +input BidCreateInput { + auction: ID! + nft: ID! + bidder: ID! + amount: String! + isCanceled: Boolean! + createdInBlock: Float! + indexInBlock: Float! } -input CommentReactionUpdateInput { - reactionId: Float - member: ID - memberId: String - comment: ID - video: ID +input BidUpdateInput { + auction: ID + nft: ID + bidder: ID + amount: String + isCanceled: Boolean + createdInBlock: Float + indexInBlock: Float } -input CommentReactionsCountByReactionIdWhereInput { +input AuctionBidMadeEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15317,44 +14920,75 @@ input CommentReactionsCountByReactionIdWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - reactionId_eq: Int - reactionId_gt: Int - reactionId_gte: Int - reactionId_lt: Int - reactionId_lte: Int - reactionId_in: [Int!] - count_eq: Int - count_gt: Int - count_gte: Int - count_lt: Int - count_lte: Int - count_in: [Int!] - comment: CommentWhereInput + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + bidAmount_eq: BigInt + bidAmount_gt: BigInt + bidAmount_gte: BigInt + bidAmount_lt: BigInt + bidAmount_lte: BigInt + bidAmount_in: [BigInt!] + member: MembershipWhereInput video: VideoWhereInput - AND: [CommentReactionsCountByReactionIdWhereInput!] - OR: [CommentReactionsCountByReactionIdWhereInput!] - NOT: [CommentReactionsCountByReactionIdWhereInput!] + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + previousTopBid: BidWhereInput + previousTopBidder: MembershipWhereInput + AND: [AuctionBidMadeEventWhereInput!] + OR: [AuctionBidMadeEventWhereInput!] + NOT: [AuctionBidMadeEventWhereInput!] } -input CommentReactionsCountByReactionIdWhereUniqueInput { +input AuctionBidMadeEventWhereUniqueInput { id: ID! } -input CommentReactionsCountByReactionIdCreateInput { - reactionId: Float! - count: Float! - comment: ID! +input AuctionBidMadeEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + member: ID! video: ID! + bidAmount: String! + ownerMember: ID + ownerCuratorGroup: ID + previousTopBid: ID + previousTopBidder: ID } -input CommentReactionsCountByReactionIdUpdateInput { - reactionId: Float - count: Float - comment: ID +input AuctionBidMadeEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + member: ID video: ID + bidAmount: String + ownerMember: ID + ownerCuratorGroup: ID + previousTopBid: ID + previousTopBidder: ID } -input CommentTextUpdatedEventWhereInput { +input AuctionCanceledEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15398,46 +15032,42 @@ input CommentTextUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newText_eq: String - newText_contains: String - newText_startsWith: String - newText_endsWith: String - newText_in: [String!] - comment: CommentWhereInput + contentActor_json: JSONObject video: VideoWhereInput - videoChannel: ChannelWhereInput - AND: [CommentTextUpdatedEventWhereInput!] - OR: [CommentTextUpdatedEventWhereInput!] - NOT: [CommentTextUpdatedEventWhereInput!] + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [AuctionCanceledEventWhereInput!] + OR: [AuctionCanceledEventWhereInput!] + NOT: [AuctionCanceledEventWhereInput!] } -input CommentTextUpdatedEventWhereUniqueInput { +input AuctionCanceledEventWhereUniqueInput { id: ID! } -input CommentTextUpdatedEventCreateInput { +input AuctionCanceledEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - comment: ID! + contentActor: JSONObject! video: ID! - videoChannel: ID! - newText: String! + ownerMember: ID + ownerCuratorGroup: ID } -input CommentTextUpdatedEventUpdateInput { +input AuctionCanceledEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - comment: ID - video: ID - videoChannel: ID - newText: String + contentActor: JSONObject + video: ID + ownerMember: ID + ownerCuratorGroup: ID } -input CommentDeletedEventWhereInput { +input BuyNowCanceledEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15481,39 +15111,42 @@ input CommentDeletedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - comment: CommentWhereInput + contentActor_json: JSONObject video: VideoWhereInput - videoChannel: ChannelWhereInput - AND: [CommentDeletedEventWhereInput!] - OR: [CommentDeletedEventWhereInput!] - NOT: [CommentDeletedEventWhereInput!] + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [BuyNowCanceledEventWhereInput!] + OR: [BuyNowCanceledEventWhereInput!] + NOT: [BuyNowCanceledEventWhereInput!] } -input CommentDeletedEventWhereUniqueInput { +input BuyNowCanceledEventWhereUniqueInput { id: ID! } -input CommentDeletedEventCreateInput { +input BuyNowCanceledEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - comment: ID! video: ID! - videoChannel: ID! + contentActor: JSONObject! + ownerMember: ID + ownerCuratorGroup: ID } -input CommentDeletedEventUpdateInput { +input BuyNowCanceledEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - comment: ID video: ID - videoChannel: ID + contentActor: JSONObject + ownerMember: ID + ownerCuratorGroup: ID } -input CommentModeratedEventWhereInput { +input BuyNowPriceUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15557,49 +15190,50 @@ input CommentModeratedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - actor_json: JSONObject - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - comment: CommentWhereInput + contentActor_json: JSONObject + newPrice_eq: BigInt + newPrice_gt: BigInt + newPrice_gte: BigInt + newPrice_lt: BigInt + newPrice_lte: BigInt + newPrice_in: [BigInt!] video: VideoWhereInput - videoChannel: ChannelWhereInput - AND: [CommentModeratedEventWhereInput!] - OR: [CommentModeratedEventWhereInput!] - NOT: [CommentModeratedEventWhereInput!] + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [BuyNowPriceUpdatedEventWhereInput!] + OR: [BuyNowPriceUpdatedEventWhereInput!] + NOT: [BuyNowPriceUpdatedEventWhereInput!] } -input CommentModeratedEventWhereUniqueInput { +input BuyNowPriceUpdatedEventWhereUniqueInput { id: ID! } -input CommentModeratedEventCreateInput { +input BuyNowPriceUpdatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - comment: ID! video: ID! - videoChannel: ID! - actor: JSONObject! - rationale: String! + contentActor: JSONObject! + newPrice: String! + ownerMember: ID + ownerCuratorGroup: ID } -input CommentModeratedEventUpdateInput { +input BuyNowPriceUpdatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - comment: ID video: ID - videoChannel: ID - actor: JSONObject - rationale: String + contentActor: JSONObject + newPrice: String + ownerMember: ID + ownerCuratorGroup: ID } -input CommentPinnedEventWhereInput { +input NftBoughtEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15643,43 +15277,50 @@ input CommentPinnedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - action_eq: Boolean - action_in: [Boolean!] - comment: CommentWhereInput + price_eq: BigInt + price_gt: BigInt + price_gte: BigInt + price_lt: BigInt + price_lte: BigInt + price_in: [BigInt!] video: VideoWhereInput - videoChannel: ChannelWhereInput - AND: [CommentPinnedEventWhereInput!] - OR: [CommentPinnedEventWhereInput!] - NOT: [CommentPinnedEventWhereInput!] + member: MembershipWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [NftBoughtEventWhereInput!] + OR: [NftBoughtEventWhereInput!] + NOT: [NftBoughtEventWhereInput!] } -input CommentPinnedEventWhereUniqueInput { +input NftBoughtEventWhereUniqueInput { id: ID! } -input CommentPinnedEventCreateInput { +input NftBoughtEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - comment: ID! video: ID! - videoChannel: ID! - action: Boolean! + member: ID! + ownerMember: ID + ownerCuratorGroup: ID + price: String! } -input CommentPinnedEventUpdateInput { +input NftBoughtEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - comment: ID video: ID - videoChannel: ID - action: Boolean + member: ID + ownerMember: ID + ownerCuratorGroup: ID + price: String } -input CommentReactedEventWhereInput { +input NftSellOrderMadeEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15723,50 +15364,50 @@ input CommentReactedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - reactionResult_eq: Int - reactionResult_gt: Int - reactionResult_gte: Int - reactionResult_lt: Int - reactionResult_lte: Int - reactionResult_in: [Int!] - comment: CommentWhereInput + contentActor_json: JSONObject + price_eq: BigInt + price_gt: BigInt + price_gte: BigInt + price_lt: BigInt + price_lte: BigInt + price_in: [BigInt!] video: VideoWhereInput - videoChannel: ChannelWhereInput - reactingMember: MembershipWhereInput - AND: [CommentReactedEventWhereInput!] - OR: [CommentReactedEventWhereInput!] - NOT: [CommentReactedEventWhereInput!] + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [NftSellOrderMadeEventWhereInput!] + OR: [NftSellOrderMadeEventWhereInput!] + NOT: [NftSellOrderMadeEventWhereInput!] } -input CommentReactedEventWhereUniqueInput { +input NftSellOrderMadeEventWhereUniqueInput { id: ID! } -input CommentReactedEventCreateInput { +input NftSellOrderMadeEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - comment: ID! video: ID! - videoChannel: ID! - reactionResult: Float! - reactingMember: ID! + contentActor: JSONObject! + ownerMember: ID + ownerCuratorGroup: ID + price: String! } -input CommentReactedEventUpdateInput { +input NftSellOrderMadeEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - comment: ID video: ID - videoChannel: ID - reactionResult: Float - reactingMember: ID + contentActor: JSONObject + ownerMember: ID + ownerCuratorGroup: ID + price: String } -input CommentWhereInput { +input NftSlingedBackToTheOriginalArtistEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15791,93 +15432,61 @@ input CommentWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - text_eq: String - text_contains: String - text_startsWith: String - text_endsWith: String - text_in: [String!] - status_eq: CommentStatus - status_in: [CommentStatus!] - repliesCount_eq: Int - repliesCount_gt: Int - repliesCount_gte: Int - repliesCount_lt: Int - repliesCount_lte: Int - repliesCount_in: [Int!] - reactionsCount_eq: Int - reactionsCount_gt: Int - reactionsCount_gte: Int - reactionsCount_lt: Int - reactionsCount_lte: Int - reactionsCount_in: [Int!] - reactionsAndRepliesCount_eq: Int - reactionsAndRepliesCount_gt: Int - reactionsAndRepliesCount_gte: Int - reactionsAndRepliesCount_lt: Int - reactionsAndRepliesCount_lte: Int - reactionsAndRepliesCount_in: [Int!] - isEdited_eq: Boolean - isEdited_in: [Boolean!] - author: MembershipWhereInput + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + contentActor_json: JSONObject video: VideoWhereInput - reactions_none: CommentReactionWhereInput - reactions_some: CommentReactionWhereInput - reactions_every: CommentReactionWhereInput - reactionsCountByReactionId_none: CommentReactionsCountByReactionIdWhereInput - reactionsCountByReactionId_some: CommentReactionsCountByReactionIdWhereInput - reactionsCountByReactionId_every: CommentReactionsCountByReactionIdWhereInput - parentComment: CommentWhereInput - edits_none: CommentTextUpdatedEventWhereInput - edits_some: CommentTextUpdatedEventWhereInput - edits_every: CommentTextUpdatedEventWhereInput - deletedInEvent: CommentDeletedEventWhereInput - moderatedInEvent: CommentModeratedEventWhereInput - commentparentComment_none: CommentWhereInput - commentparentComment_some: CommentWhereInput - commentparentComment_every: CommentWhereInput - commentcreatedeventcomment_none: CommentCreatedEventWhereInput - commentcreatedeventcomment_some: CommentCreatedEventWhereInput - commentcreatedeventcomment_every: CommentCreatedEventWhereInput - commentpinnedeventcomment_none: CommentPinnedEventWhereInput - commentpinnedeventcomment_some: CommentPinnedEventWhereInput - commentpinnedeventcomment_every: CommentPinnedEventWhereInput - commentreactedeventcomment_none: CommentReactedEventWhereInput - commentreactedeventcomment_some: CommentReactedEventWhereInput - commentreactedeventcomment_every: CommentReactedEventWhereInput - AND: [CommentWhereInput!] - OR: [CommentWhereInput!] - NOT: [CommentWhereInput!] + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [NftSlingedBackToTheOriginalArtistEventWhereInput!] + OR: [NftSlingedBackToTheOriginalArtistEventWhereInput!] + NOT: [NftSlingedBackToTheOriginalArtistEventWhereInput!] } -input CommentWhereUniqueInput { +input NftSlingedBackToTheOriginalArtistEventWhereUniqueInput { id: ID! } -input CommentCreateInput { - author: ID! - text: String! +input NftSlingedBackToTheOriginalArtistEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! video: ID! - status: CommentStatus! - parentComment: ID - repliesCount: Float! - reactionsCount: Float! - reactionsAndRepliesCount: Float! - isEdited: Boolean! + contentActor: JSONObject! + ownerMember: ID + ownerCuratorGroup: ID } -input CommentUpdateInput { - author: ID - text: String +input NftSlingedBackToTheOriginalArtistEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float video: ID - status: CommentStatus - parentComment: ID - repliesCount: Float - reactionsCount: Float - reactionsAndRepliesCount: Float - isEdited: Boolean + contentActor: JSONObject + ownerMember: ID + ownerCuratorGroup: ID } -input CommentCreatedEventWhereInput { +input OfferAcceptedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15921,49 +15530,47 @@ input CommentCreatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - text_eq: String - text_contains: String - text_startsWith: String - text_endsWith: String - text_in: [String!] - comment: CommentWhereInput - parentCommentAuthor: MembershipWhereInput + price_eq: BigInt + price_gt: BigInt + price_gte: BigInt + price_lt: BigInt + price_lte: BigInt + price_in: [BigInt!] video: VideoWhereInput - videoChannel: ChannelWhereInput - AND: [CommentCreatedEventWhereInput!] - OR: [CommentCreatedEventWhereInput!] - NOT: [CommentCreatedEventWhereInput!] + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [OfferAcceptedEventWhereInput!] + OR: [OfferAcceptedEventWhereInput!] + NOT: [OfferAcceptedEventWhereInput!] } -input CommentCreatedEventWhereUniqueInput { +input OfferAcceptedEventWhereUniqueInput { id: ID! } -input CommentCreatedEventCreateInput { +input OfferAcceptedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - comment: ID! - parentCommentAuthor: ID video: ID! - videoChannel: ID! - text: String! + ownerMember: ID + ownerCuratorGroup: ID + price: String } -input CommentCreatedEventUpdateInput { +input OfferAcceptedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - comment: ID - parentCommentAuthor: ID video: ID - videoChannel: ID - text: String + ownerMember: ID + ownerCuratorGroup: ID + price: String } -input MemberBannedFromChannelEventWhereInput { +input OfferCanceledEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16007,40 +15614,42 @@ input MemberBannedFromChannelEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - action_eq: Boolean - action_in: [Boolean!] - channel: ChannelWhereInput - member: MembershipWhereInput - AND: [MemberBannedFromChannelEventWhereInput!] - OR: [MemberBannedFromChannelEventWhereInput!] - NOT: [MemberBannedFromChannelEventWhereInput!] + contentActor_json: JSONObject + video: VideoWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [OfferCanceledEventWhereInput!] + OR: [OfferCanceledEventWhereInput!] + NOT: [OfferCanceledEventWhereInput!] } -input MemberBannedFromChannelEventWhereUniqueInput { +input OfferCanceledEventWhereUniqueInput { id: ID! } -input MemberBannedFromChannelEventCreateInput { +input OfferCanceledEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - channel: ID! - member: ID! - action: Boolean! + video: ID! + contentActor: JSONObject! + ownerMember: ID + ownerCuratorGroup: ID } -input MemberBannedFromChannelEventUpdateInput { +input OfferCanceledEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - channel: ID - member: ID - action: Boolean + video: ID + contentActor: JSONObject + ownerMember: ID + ownerCuratorGroup: ID } -input VideoReactedEventWhereInput { +input OfferStartedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16084,43 +15693,160 @@ input VideoReactedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - reactionResult_eq: VideoReactionOptions - reactionResult_in: [VideoReactionOptions!] + contentActor_json: JSONObject + price_eq: BigInt + price_gt: BigInt + price_gte: BigInt + price_lt: BigInt + price_lte: BigInt + price_in: [BigInt!] video: VideoWhereInput - videoChannel: ChannelWhereInput - reactingMember: MembershipWhereInput - AND: [VideoReactedEventWhereInput!] - OR: [VideoReactedEventWhereInput!] - NOT: [VideoReactedEventWhereInput!] + member: MembershipWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [OfferStartedEventWhereInput!] + OR: [OfferStartedEventWhereInput!] + NOT: [OfferStartedEventWhereInput!] } -input VideoReactedEventWhereUniqueInput { +input OfferStartedEventWhereUniqueInput { id: ID! } -input VideoReactedEventCreateInput { +input OfferStartedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! video: ID! - videoChannel: ID! - reactionResult: VideoReactionOptions! - reactingMember: ID! + contentActor: JSONObject! + member: ID! + price: String + ownerMember: ID + ownerCuratorGroup: ID +} + +input OfferStartedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + video: ID + contentActor: JSONObject + member: ID + price: String + ownerMember: ID + ownerCuratorGroup: ID +} + +input CuratorGroupWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + isActive_eq: Boolean + isActive_in: [Boolean!] + channels_none: ChannelWhereInput + channels_some: ChannelWhereInput + channels_every: ChannelWhereInput + nftCollectorInChannels_none: ChannelNftCollectorsWhereInput + nftCollectorInChannels_some: ChannelNftCollectorsWhereInput + nftCollectorInChannels_every: ChannelNftCollectorsWhereInput + curators_none: CuratorAgentPermissionsWhereInput + curators_some: CuratorAgentPermissionsWhereInput + curators_every: CuratorAgentPermissionsWhereInput + auctionbidcanceledeventownerCuratorGroup_none: AuctionBidCanceledEventWhereInput + auctionbidcanceledeventownerCuratorGroup_some: AuctionBidCanceledEventWhereInput + auctionbidcanceledeventownerCuratorGroup_every: AuctionBidCanceledEventWhereInput + auctionbidmadeeventownerCuratorGroup_none: AuctionBidMadeEventWhereInput + auctionbidmadeeventownerCuratorGroup_some: AuctionBidMadeEventWhereInput + auctionbidmadeeventownerCuratorGroup_every: AuctionBidMadeEventWhereInput + auctioncanceledeventownerCuratorGroup_none: AuctionCanceledEventWhereInput + auctioncanceledeventownerCuratorGroup_some: AuctionCanceledEventWhereInput + auctioncanceledeventownerCuratorGroup_every: AuctionCanceledEventWhereInput + bidmadecompletingauctioneventownerCuratorGroup_none: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventownerCuratorGroup_some: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventownerCuratorGroup_every: BidMadeCompletingAuctionEventWhereInput + buynowcanceledeventownerCuratorGroup_none: BuyNowCanceledEventWhereInput + buynowcanceledeventownerCuratorGroup_some: BuyNowCanceledEventWhereInput + buynowcanceledeventownerCuratorGroup_every: BuyNowCanceledEventWhereInput + buynowpriceupdatedeventownerCuratorGroup_none: BuyNowPriceUpdatedEventWhereInput + buynowpriceupdatedeventownerCuratorGroup_some: BuyNowPriceUpdatedEventWhereInput + buynowpriceupdatedeventownerCuratorGroup_every: BuyNowPriceUpdatedEventWhereInput + englishauctionsettledeventownerCuratorGroup_none: EnglishAuctionSettledEventWhereInput + englishauctionsettledeventownerCuratorGroup_some: EnglishAuctionSettledEventWhereInput + englishauctionsettledeventownerCuratorGroup_every: EnglishAuctionSettledEventWhereInput + englishauctionstartedeventownerCuratorGroup_none: EnglishAuctionStartedEventWhereInput + englishauctionstartedeventownerCuratorGroup_some: EnglishAuctionStartedEventWhereInput + englishauctionstartedeventownerCuratorGroup_every: EnglishAuctionStartedEventWhereInput + nftboughteventownerCuratorGroup_none: NftBoughtEventWhereInput + nftboughteventownerCuratorGroup_some: NftBoughtEventWhereInput + nftboughteventownerCuratorGroup_every: NftBoughtEventWhereInput + nftissuedeventownerCuratorGroup_none: NftIssuedEventWhereInput + nftissuedeventownerCuratorGroup_some: NftIssuedEventWhereInput + nftissuedeventownerCuratorGroup_every: NftIssuedEventWhereInput + nftsellordermadeeventownerCuratorGroup_none: NftSellOrderMadeEventWhereInput + nftsellordermadeeventownerCuratorGroup_some: NftSellOrderMadeEventWhereInput + nftsellordermadeeventownerCuratorGroup_every: NftSellOrderMadeEventWhereInput + nftslingedbacktotheoriginalartisteventownerCuratorGroup_none: NftSlingedBackToTheOriginalArtistEventWhereInput + nftslingedbacktotheoriginalartisteventownerCuratorGroup_some: NftSlingedBackToTheOriginalArtistEventWhereInput + nftslingedbacktotheoriginalartisteventownerCuratorGroup_every: NftSlingedBackToTheOriginalArtistEventWhereInput + offeracceptedeventownerCuratorGroup_none: OfferAcceptedEventWhereInput + offeracceptedeventownerCuratorGroup_some: OfferAcceptedEventWhereInput + offeracceptedeventownerCuratorGroup_every: OfferAcceptedEventWhereInput + offercanceledeventownerCuratorGroup_none: OfferCanceledEventWhereInput + offercanceledeventownerCuratorGroup_some: OfferCanceledEventWhereInput + offercanceledeventownerCuratorGroup_every: OfferCanceledEventWhereInput + offerstartedeventownerCuratorGroup_none: OfferStartedEventWhereInput + offerstartedeventownerCuratorGroup_some: OfferStartedEventWhereInput + offerstartedeventownerCuratorGroup_every: OfferStartedEventWhereInput + openauctionbidacceptedeventownerCuratorGroup_none: OpenAuctionBidAcceptedEventWhereInput + openauctionbidacceptedeventownerCuratorGroup_some: OpenAuctionBidAcceptedEventWhereInput + openauctionbidacceptedeventownerCuratorGroup_every: OpenAuctionBidAcceptedEventWhereInput + openauctionstartedeventownerCuratorGroup_none: OpenAuctionStartedEventWhereInput + openauctionstartedeventownerCuratorGroup_some: OpenAuctionStartedEventWhereInput + openauctionstartedeventownerCuratorGroup_every: OpenAuctionStartedEventWhereInput + ownednftownerCuratorGroup_none: OwnedNftWhereInput + ownednftownerCuratorGroup_some: OwnedNftWhereInput + ownednftownerCuratorGroup_every: OwnedNftWhereInput + AND: [CuratorGroupWhereInput!] + OR: [CuratorGroupWhereInput!] + NOT: [CuratorGroupWhereInput!] +} + +input CuratorGroupWhereUniqueInput { + id: ID! } -input VideoReactedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - video: ID - videoChannel: ID - reactionResult: VideoReactionOptions - reactingMember: ID +input CuratorGroupCreateInput { + isActive: Boolean! } -input ChannelWhereInput { +input CuratorGroupUpdateInput { + isActive: Boolean +} + +input VideoSubtitleWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16145,168 +15871,45 @@ input ChannelWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - title_eq: String - title_contains: String - title_startsWith: String - title_endsWith: String - title_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - activeVideosCounter_eq: Int - activeVideosCounter_gt: Int - activeVideosCounter_gte: Int - activeVideosCounter_lt: Int - activeVideosCounter_lte: Int - activeVideosCounter_in: [Int!] - isPublic_eq: Boolean - isPublic_in: [Boolean!] - isCensored_eq: Boolean - isCensored_in: [Boolean!] - createdInBlock_eq: Int - createdInBlock_gt: Int - createdInBlock_gte: Int - createdInBlock_lt: Int - createdInBlock_lte: Int - createdInBlock_in: [Int!] - rewardAccount_eq: String - rewardAccount_contains: String - rewardAccount_startsWith: String - rewardAccount_endsWith: String - rewardAccount_in: [String!] - channelStateBloatBond_eq: BigInt - channelStateBloatBond_gt: BigInt - channelStateBloatBond_gte: BigInt - channelStateBloatBond_lt: BigInt - channelStateBloatBond_lte: BigInt - channelStateBloatBond_in: [BigInt!] - privilegeLevel_eq: Int - privilegeLevel_gt: Int - privilegeLevel_gte: Int - privilegeLevel_lt: Int - privilegeLevel_lte: Int - privilegeLevel_in: [Int!] - cumulativeRewardClaimed_eq: BigInt - cumulativeRewardClaimed_gt: BigInt - cumulativeRewardClaimed_gte: BigInt - cumulativeRewardClaimed_lt: BigInt - cumulativeRewardClaimed_lte: BigInt - cumulativeRewardClaimed_in: [BigInt!] - totalVideosCreated_eq: Int - totalVideosCreated_gt: Int - totalVideosCreated_gte: Int - totalVideosCreated_lt: Int - totalVideosCreated_lte: Int - totalVideosCreated_in: [Int!] - entryApp: AppWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - coverPhoto: StorageDataObjectWhereInput - avatarPhoto: StorageDataObjectWhereInput + type_eq: String + type_contains: String + type_startsWith: String + type_endsWith: String + type_in: [String!] + mimeType_eq: String + mimeType_contains: String + mimeType_startsWith: String + mimeType_endsWith: String + mimeType_in: [String!] + video: VideoWhereInput language: LanguageWhereInput - videos_none: VideoWhereInput - videos_some: VideoWhereInput - videos_every: VideoWhereInput - collaborators_none: CollaboratorWhereInput - collaborators_some: CollaboratorWhereInput - collaborators_every: CollaboratorWhereInput - bannedMembers_none: MembershipWhereInput - bannedMembers_some: MembershipWhereInput - bannedMembers_every: MembershipWhereInput - channelNftCollectors_none: ChannelNftCollectorsWhereInput - channelNftCollectors_some: ChannelNftCollectorsWhereInput - channelNftCollectors_every: ChannelNftCollectorsWhereInput - claimedRewards_none: ChannelRewardClaimedEventWhereInput - claimedRewards_some: ChannelRewardClaimedEventWhereInput - claimedRewards_every: ChannelRewardClaimedEventWhereInput - channelfundswithdrawneventchannel_none: ChannelFundsWithdrawnEventWhereInput - channelfundswithdrawneventchannel_some: ChannelFundsWithdrawnEventWhereInput - channelfundswithdrawneventchannel_every: ChannelFundsWithdrawnEventWhereInput - channelpaymentmadeeventpayeeChannel_none: ChannelPaymentMadeEventWhereInput - channelpaymentmadeeventpayeeChannel_some: ChannelPaymentMadeEventWhereInput - channelpaymentmadeeventpayeeChannel_every: ChannelPaymentMadeEventWhereInput - channelrewardclaimedandwithdrawneventchannel_none: ChannelRewardClaimedAndWithdrawnEventWhereInput - channelrewardclaimedandwithdrawneventchannel_some: ChannelRewardClaimedAndWithdrawnEventWhereInput - channelrewardclaimedandwithdrawneventchannel_every: ChannelRewardClaimedAndWithdrawnEventWhereInput - commentcreatedeventvideoChannel_none: CommentCreatedEventWhereInput - commentcreatedeventvideoChannel_some: CommentCreatedEventWhereInput - commentcreatedeventvideoChannel_every: CommentCreatedEventWhereInput - commentdeletedeventvideoChannel_none: CommentDeletedEventWhereInput - commentdeletedeventvideoChannel_some: CommentDeletedEventWhereInput - commentdeletedeventvideoChannel_every: CommentDeletedEventWhereInput - commentmoderatedeventvideoChannel_none: CommentModeratedEventWhereInput - commentmoderatedeventvideoChannel_some: CommentModeratedEventWhereInput - commentmoderatedeventvideoChannel_every: CommentModeratedEventWhereInput - commentpinnedeventvideoChannel_none: CommentPinnedEventWhereInput - commentpinnedeventvideoChannel_some: CommentPinnedEventWhereInput - commentpinnedeventvideoChannel_every: CommentPinnedEventWhereInput - commentreactedeventvideoChannel_none: CommentReactedEventWhereInput - commentreactedeventvideoChannel_some: CommentReactedEventWhereInput - commentreactedeventvideoChannel_every: CommentReactedEventWhereInput - commenttextupdatedeventvideoChannel_none: CommentTextUpdatedEventWhereInput - commenttextupdatedeventvideoChannel_some: CommentTextUpdatedEventWhereInput - commenttextupdatedeventvideoChannel_every: CommentTextUpdatedEventWhereInput - memberbannedfromchanneleventchannel_none: MemberBannedFromChannelEventWhereInput - memberbannedfromchanneleventchannel_some: MemberBannedFromChannelEventWhereInput - memberbannedfromchanneleventchannel_every: MemberBannedFromChannelEventWhereInput - ownednftcreatorChannel_none: OwnedNftWhereInput - ownednftcreatorChannel_some: OwnedNftWhereInput - ownednftcreatorChannel_every: OwnedNftWhereInput - videoreactedeventvideoChannel_none: VideoReactedEventWhereInput - videoreactedeventvideoChannel_some: VideoReactedEventWhereInput - videoreactedeventvideoChannel_every: VideoReactedEventWhereInput - AND: [ChannelWhereInput!] - OR: [ChannelWhereInput!] - NOT: [ChannelWhereInput!] + asset: StorageDataObjectWhereInput + AND: [VideoSubtitleWhereInput!] + OR: [VideoSubtitleWhereInput!] + NOT: [VideoSubtitleWhereInput!] } -input ChannelWhereUniqueInput { +input VideoSubtitleWhereUniqueInput { id: ID! } -input ChannelCreateInput { - entryApp: ID - ownerMember: ID - ownerCuratorGroup: ID - title: String - description: String - activeVideosCounter: Float! - coverPhoto: ID - avatarPhoto: ID - isPublic: Boolean - isCensored: Boolean! +input VideoSubtitleCreateInput { + video: ID! + type: String! language: ID - createdInBlock: Float! - rewardAccount: String! - channelStateBloatBond: String! - privilegeLevel: Float - cumulativeRewardClaimed: String - totalVideosCreated: Float! + mimeType: String! + asset: ID } -input ChannelUpdateInput { - entryApp: ID - ownerMember: ID - ownerCuratorGroup: ID - title: String - description: String - activeVideosCounter: Float - coverPhoto: ID - avatarPhoto: ID - isPublic: Boolean - isCensored: Boolean +input VideoSubtitleUpdateInput { + video: ID + type: String language: ID - createdInBlock: Float - rewardAccount: String - channelStateBloatBond: String - privilegeLevel: Float - cumulativeRewardClaimed: String - totalVideosCreated: Float + mimeType: String + asset: ID } -input LicenseWhereInput { +input LanguageWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16331,47 +15934,46 @@ input LicenseWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - code_eq: Int - code_gt: Int - code_gte: Int - code_lt: Int - code_lte: Int - code_in: [Int!] - attribution_eq: String - attribution_contains: String - attribution_startsWith: String - attribution_endsWith: String - attribution_in: [String!] - customText_eq: String - customText_contains: String - customText_startsWith: String - customText_endsWith: String - customText_in: [String!] - videolicense_none: VideoWhereInput - videolicense_some: VideoWhereInput - videolicense_every: VideoWhereInput - AND: [LicenseWhereInput!] - OR: [LicenseWhereInput!] - NOT: [LicenseWhereInput!] + iso_eq: String + iso_contains: String + iso_startsWith: String + iso_endsWith: String + iso_in: [String!] + createdInBlock_eq: Int + createdInBlock_gt: Int + createdInBlock_gte: Int + createdInBlock_lt: Int + createdInBlock_lte: Int + createdInBlock_in: [Int!] + channellanguage_none: ChannelWhereInput + channellanguage_some: ChannelWhereInput + channellanguage_every: ChannelWhereInput + videolanguage_none: VideoWhereInput + videolanguage_some: VideoWhereInput + videolanguage_every: VideoWhereInput + videosubtitlelanguage_none: VideoSubtitleWhereInput + videosubtitlelanguage_some: VideoSubtitleWhereInput + videosubtitlelanguage_every: VideoSubtitleWhereInput + AND: [LanguageWhereInput!] + OR: [LanguageWhereInput!] + NOT: [LanguageWhereInput!] } -input LicenseWhereUniqueInput { +input LanguageWhereUniqueInput { id: ID! } -input LicenseCreateInput { - code: Float - attribution: String - customText: String +input LanguageCreateInput { + iso: String! + createdInBlock: Float! } -input LicenseUpdateInput { - code: Float - attribution: String - customText: String +input LanguageUpdateInput { + iso: String + createdInBlock: Float } -input VideoMediaEncodingWhereInput { +input CollaboratorWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16396,46 +15998,33 @@ input VideoMediaEncodingWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - codecName_eq: String - codecName_contains: String - codecName_startsWith: String - codecName_endsWith: String - codecName_in: [String!] - container_eq: String - container_contains: String - container_startsWith: String - container_endsWith: String - container_in: [String!] - mimeMediaType_eq: String - mimeMediaType_contains: String - mimeMediaType_startsWith: String - mimeMediaType_endsWith: String - mimeMediaType_in: [String!] - videomediametadataencoding_none: VideoMediaMetadataWhereInput - videomediametadataencoding_some: VideoMediaMetadataWhereInput - videomediametadataencoding_every: VideoMediaMetadataWhereInput - AND: [VideoMediaEncodingWhereInput!] - OR: [VideoMediaEncodingWhereInput!] - NOT: [VideoMediaEncodingWhereInput!] + permissions_containsAll: [String!] + permissions_containsNone: [String!] + permissions_containsAny: [String!] + channel: ChannelWhereInput + member: MembershipWhereInput + AND: [CollaboratorWhereInput!] + OR: [CollaboratorWhereInput!] + NOT: [CollaboratorWhereInput!] } -input VideoMediaEncodingWhereUniqueInput { +input CollaboratorWhereUniqueInput { id: ID! } -input VideoMediaEncodingCreateInput { - codecName: String - container: String - mimeMediaType: String +input CollaboratorCreateInput { + channel: ID! + member: ID! + permissions: [String!]! } -input VideoMediaEncodingUpdateInput { - codecName: String - container: String - mimeMediaType: String +input CollaboratorUpdateInput { + channel: ID + member: ID + permissions: [String!] } -input VideoMediaMetadataWhereInput { +input ChannelRewardClaimedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16460,58 +16049,60 @@ input VideoMediaMetadataWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - pixelWidth_eq: Int - pixelWidth_gt: Int - pixelWidth_gte: Int - pixelWidth_lt: Int - pixelWidth_lte: Int - pixelWidth_in: [Int!] - pixelHeight_eq: Int - pixelHeight_gt: Int - pixelHeight_gte: Int - pixelHeight_lt: Int - pixelHeight_lte: Int - pixelHeight_in: [Int!] - size_eq: BigInt - size_gt: BigInt - size_gte: BigInt - size_lt: BigInt - size_lte: BigInt - size_in: [BigInt!] - createdInBlock_eq: Int - createdInBlock_gt: Int - createdInBlock_gte: Int - createdInBlock_lt: Int - createdInBlock_lte: Int - createdInBlock_in: [Int!] - encoding: VideoMediaEncodingWhereInput - video: VideoWhereInput - AND: [VideoMediaMetadataWhereInput!] - OR: [VideoMediaMetadataWhereInput!] - NOT: [VideoMediaMetadataWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + channel: ChannelWhereInput + AND: [ChannelRewardClaimedEventWhereInput!] + OR: [ChannelRewardClaimedEventWhereInput!] + NOT: [ChannelRewardClaimedEventWhereInput!] } -input VideoMediaMetadataWhereUniqueInput { +input ChannelRewardClaimedEventWhereUniqueInput { id: ID! } -input VideoMediaMetadataCreateInput { - encoding: ID - pixelWidth: Float - pixelHeight: Float - size: String - createdInBlock: Float! +input ChannelRewardClaimedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + channel: ID! + amount: String! } -input VideoMediaMetadataUpdateInput { - encoding: ID - pixelWidth: Float - pixelHeight: Float - size: String - createdInBlock: Float +input ChannelRewardClaimedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + channel: ID + amount: String } -input VideoReactionWhereInput { +input ChannelFundsWithdrawnEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16536,39 +16127,70 @@ input VideoReactionWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - reaction_eq: VideoReactionOptions - reaction_in: [VideoReactionOptions!] - memberId_eq: String - memberId_contains: String - memberId_startsWith: String - memberId_endsWith: String - memberId_in: [String!] - member: MembershipWhereInput - video: VideoWhereInput - AND: [VideoReactionWhereInput!] - OR: [VideoReactionWhereInput!] - NOT: [VideoReactionWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + account_eq: String + account_contains: String + account_startsWith: String + account_endsWith: String + account_in: [String!] + actor_json: JSONObject + channel: ChannelWhereInput + AND: [ChannelFundsWithdrawnEventWhereInput!] + OR: [ChannelFundsWithdrawnEventWhereInput!] + NOT: [ChannelFundsWithdrawnEventWhereInput!] } -input VideoReactionWhereUniqueInput { +input ChannelFundsWithdrawnEventWhereUniqueInput { id: ID! } -input VideoReactionCreateInput { - reaction: VideoReactionOptions! - member: ID! - memberId: String! - video: ID! +input ChannelFundsWithdrawnEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + channel: ID! + amount: String! + account: String + actor: JSONObject! } -input VideoReactionUpdateInput { - reaction: VideoReactionOptions - member: ID - memberId: String - video: ID +input ChannelFundsWithdrawnEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + channel: ID + amount: String + account: String + actor: JSONObject } -input VideoReactionsCountByReactionTypeWhereInput { +input ChannelPaymentMadeEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16593,37 +16215,73 @@ input VideoReactionsCountByReactionTypeWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - reaction_eq: VideoReactionOptions - reaction_in: [VideoReactionOptions!] - count_eq: Int - count_gt: Int - count_gte: Int - count_lt: Int - count_lte: Int - count_in: [Int!] - video: VideoWhereInput - AND: [VideoReactionsCountByReactionTypeWhereInput!] - OR: [VideoReactionsCountByReactionTypeWhereInput!] - NOT: [VideoReactionsCountByReactionTypeWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + paymentContext_json: JSONObject + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + payer: MembershipWhereInput + payeeChannel: ChannelWhereInput + AND: [ChannelPaymentMadeEventWhereInput!] + OR: [ChannelPaymentMadeEventWhereInput!] + NOT: [ChannelPaymentMadeEventWhereInput!] } -input VideoReactionsCountByReactionTypeWhereUniqueInput { +input ChannelPaymentMadeEventWhereUniqueInput { id: ID! } -input VideoReactionsCountByReactionTypeCreateInput { - reaction: VideoReactionOptions! - count: Float! - video: ID! +input ChannelPaymentMadeEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + payer: ID! + amount: String! + paymentContext: JSONObject! + payeeChannel: ID + rationale: String } -input VideoReactionsCountByReactionTypeUpdateInput { - reaction: VideoReactionOptions - count: Float - video: ID +input ChannelPaymentMadeEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + payer: ID + amount: String + paymentContext: JSONObject + payeeChannel: ID + rationale: String } -input VideoReactionsPreferenceEventWhereInput { +input ChannelRewardClaimedAndWithdrawnEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16667,37 +16325,51 @@ input VideoReactionsPreferenceEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - reactionsStatus_eq: Boolean - reactionsStatus_in: [Boolean!] - video: VideoWhereInput - AND: [VideoReactionsPreferenceEventWhereInput!] - OR: [VideoReactionsPreferenceEventWhereInput!] - NOT: [VideoReactionsPreferenceEventWhereInput!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + account_eq: String + account_contains: String + account_startsWith: String + account_endsWith: String + account_in: [String!] + actor_json: JSONObject + channel: ChannelWhereInput + AND: [ChannelRewardClaimedAndWithdrawnEventWhereInput!] + OR: [ChannelRewardClaimedAndWithdrawnEventWhereInput!] + NOT: [ChannelRewardClaimedAndWithdrawnEventWhereInput!] } -input VideoReactionsPreferenceEventWhereUniqueInput { +input ChannelRewardClaimedAndWithdrawnEventWhereUniqueInput { id: ID! } -input VideoReactionsPreferenceEventCreateInput { +input ChannelRewardClaimedAndWithdrawnEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - video: ID! - reactionsStatus: Boolean! + channel: ID! + amount: String! + account: String + actor: JSONObject! } -input VideoReactionsPreferenceEventUpdateInput { +input ChannelRewardClaimedAndWithdrawnEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - video: ID - reactionsStatus: Boolean + channel: ID + amount: String + account: String + actor: JSONObject } -input VideoWhereInput { +input CommentReactionWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16717,240 +16389,113 @@ input VideoWhereInput { deletedAt_all: Boolean deletedAt_eq: DateTime deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - title_eq: String - title_contains: String - title_startsWith: String - title_endsWith: String - title_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - duration_eq: Int - duration_gt: Int - duration_gte: Int - duration_lt: Int - duration_lte: Int - duration_in: [Int!] - hasMarketing_eq: Boolean - hasMarketing_in: [Boolean!] - publishedBeforeJoystream_eq: DateTime - publishedBeforeJoystream_lt: DateTime - publishedBeforeJoystream_lte: DateTime - publishedBeforeJoystream_gt: DateTime - publishedBeforeJoystream_gte: DateTime - isPublic_eq: Boolean - isPublic_in: [Boolean!] - isCensored_eq: Boolean - isCensored_in: [Boolean!] - isExplicit_eq: Boolean - isExplicit_in: [Boolean!] - videoStateBloatBond_eq: BigInt - videoStateBloatBond_gt: BigInt - videoStateBloatBond_gte: BigInt - videoStateBloatBond_lt: BigInt - videoStateBloatBond_lte: BigInt - videoStateBloatBond_in: [BigInt!] - createdInBlock_eq: Int - createdInBlock_gt: Int - createdInBlock_gte: Int - createdInBlock_lt: Int - createdInBlock_lte: Int - createdInBlock_in: [Int!] - isCommentSectionEnabled_eq: Boolean - isCommentSectionEnabled_in: [Boolean!] - commentsCount_eq: Int - commentsCount_gt: Int - commentsCount_gte: Int - commentsCount_lt: Int - commentsCount_lte: Int - commentsCount_in: [Int!] - isReactionFeatureEnabled_eq: Boolean - isReactionFeatureEnabled_in: [Boolean!] - reactionsCount_eq: Int - reactionsCount_gt: Int - reactionsCount_gte: Int - reactionsCount_lt: Int - reactionsCount_lte: Int - reactionsCount_in: [Int!] - ytVideoId_eq: String - ytVideoId_contains: String - ytVideoId_startsWith: String - ytVideoId_endsWith: String - ytVideoId_in: [String!] - entryApp: AppWhereInput - channel: ChannelWhereInput - category: VideoCategoryWhereInput - thumbnailPhoto: StorageDataObjectWhereInput - language: LanguageWhereInput - nft: OwnedNftWhereInput - license: LicenseWhereInput - media: StorageDataObjectWhereInput - mediaMetadata: VideoMediaMetadataWhereInput - subtitles_none: VideoSubtitleWhereInput - subtitles_some: VideoSubtitleWhereInput - subtitles_every: VideoSubtitleWhereInput - pinnedComment: CommentWhereInput - comments_none: CommentWhereInput - comments_some: CommentWhereInput - comments_every: CommentWhereInput - reactions_none: VideoReactionWhereInput - reactions_some: VideoReactionWhereInput - reactions_every: VideoReactionWhereInput - reactionsCountByReactionId_none: VideoReactionsCountByReactionTypeWhereInput - reactionsCountByReactionId_some: VideoReactionsCountByReactionTypeWhereInput - reactionsCountByReactionId_every: VideoReactionsCountByReactionTypeWhereInput - auctionbidcanceledeventvideo_none: AuctionBidCanceledEventWhereInput - auctionbidcanceledeventvideo_some: AuctionBidCanceledEventWhereInput - auctionbidcanceledeventvideo_every: AuctionBidCanceledEventWhereInput - auctionbidmadeeventvideo_none: AuctionBidMadeEventWhereInput - auctionbidmadeeventvideo_some: AuctionBidMadeEventWhereInput - auctionbidmadeeventvideo_every: AuctionBidMadeEventWhereInput - auctioncanceledeventvideo_none: AuctionCanceledEventWhereInput - auctioncanceledeventvideo_some: AuctionCanceledEventWhereInput - auctioncanceledeventvideo_every: AuctionCanceledEventWhereInput - bidmadecompletingauctioneventvideo_none: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventvideo_some: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventvideo_every: BidMadeCompletingAuctionEventWhereInput - buynowcanceledeventvideo_none: BuyNowCanceledEventWhereInput - buynowcanceledeventvideo_some: BuyNowCanceledEventWhereInput - buynowcanceledeventvideo_every: BuyNowCanceledEventWhereInput - buynowpriceupdatedeventvideo_none: BuyNowPriceUpdatedEventWhereInput - buynowpriceupdatedeventvideo_some: BuyNowPriceUpdatedEventWhereInput - buynowpriceupdatedeventvideo_every: BuyNowPriceUpdatedEventWhereInput - commentcreatedeventvideo_none: CommentCreatedEventWhereInput - commentcreatedeventvideo_some: CommentCreatedEventWhereInput - commentcreatedeventvideo_every: CommentCreatedEventWhereInput - commentdeletedeventvideo_none: CommentDeletedEventWhereInput - commentdeletedeventvideo_some: CommentDeletedEventWhereInput - commentdeletedeventvideo_every: CommentDeletedEventWhereInput - commentmoderatedeventvideo_none: CommentModeratedEventWhereInput - commentmoderatedeventvideo_some: CommentModeratedEventWhereInput - commentmoderatedeventvideo_every: CommentModeratedEventWhereInput - commentpinnedeventvideo_none: CommentPinnedEventWhereInput - commentpinnedeventvideo_some: CommentPinnedEventWhereInput - commentpinnedeventvideo_every: CommentPinnedEventWhereInput - commentreactedeventvideo_none: CommentReactedEventWhereInput - commentreactedeventvideo_some: CommentReactedEventWhereInput - commentreactedeventvideo_every: CommentReactedEventWhereInput - commentreactionvideo_none: CommentReactionWhereInput - commentreactionvideo_some: CommentReactionWhereInput - commentreactionvideo_every: CommentReactionWhereInput - commentreactionscountbyreactionidvideo_none: CommentReactionsCountByReactionIdWhereInput - commentreactionscountbyreactionidvideo_some: CommentReactionsCountByReactionIdWhereInput - commentreactionscountbyreactionidvideo_every: CommentReactionsCountByReactionIdWhereInput - commenttextupdatedeventvideo_none: CommentTextUpdatedEventWhereInput - commenttextupdatedeventvideo_some: CommentTextUpdatedEventWhereInput - commenttextupdatedeventvideo_every: CommentTextUpdatedEventWhereInput - englishauctionsettledeventvideo_none: EnglishAuctionSettledEventWhereInput - englishauctionsettledeventvideo_some: EnglishAuctionSettledEventWhereInput - englishauctionsettledeventvideo_every: EnglishAuctionSettledEventWhereInput - englishauctionstartedeventvideo_none: EnglishAuctionStartedEventWhereInput - englishauctionstartedeventvideo_some: EnglishAuctionStartedEventWhereInput - englishauctionstartedeventvideo_every: EnglishAuctionStartedEventWhereInput - nftboughteventvideo_none: NftBoughtEventWhereInput - nftboughteventvideo_some: NftBoughtEventWhereInput - nftboughteventvideo_every: NftBoughtEventWhereInput - nftissuedeventvideo_none: NftIssuedEventWhereInput - nftissuedeventvideo_some: NftIssuedEventWhereInput - nftissuedeventvideo_every: NftIssuedEventWhereInput - nftsellordermadeeventvideo_none: NftSellOrderMadeEventWhereInput - nftsellordermadeeventvideo_some: NftSellOrderMadeEventWhereInput - nftsellordermadeeventvideo_every: NftSellOrderMadeEventWhereInput - nftslingedbacktotheoriginalartisteventvideo_none: NftSlingedBackToTheOriginalArtistEventWhereInput - nftslingedbacktotheoriginalartisteventvideo_some: NftSlingedBackToTheOriginalArtistEventWhereInput - nftslingedbacktotheoriginalartisteventvideo_every: NftSlingedBackToTheOriginalArtistEventWhereInput - offeracceptedeventvideo_none: OfferAcceptedEventWhereInput - offeracceptedeventvideo_some: OfferAcceptedEventWhereInput - offeracceptedeventvideo_every: OfferAcceptedEventWhereInput - offercanceledeventvideo_none: OfferCanceledEventWhereInput - offercanceledeventvideo_some: OfferCanceledEventWhereInput - offercanceledeventvideo_every: OfferCanceledEventWhereInput - offerstartedeventvideo_none: OfferStartedEventWhereInput - offerstartedeventvideo_some: OfferStartedEventWhereInput - offerstartedeventvideo_every: OfferStartedEventWhereInput - openauctionbidacceptedeventvideo_none: OpenAuctionBidAcceptedEventWhereInput - openauctionbidacceptedeventvideo_some: OpenAuctionBidAcceptedEventWhereInput - openauctionbidacceptedeventvideo_every: OpenAuctionBidAcceptedEventWhereInput - openauctionstartedeventvideo_none: OpenAuctionStartedEventWhereInput - openauctionstartedeventvideo_some: OpenAuctionStartedEventWhereInput - openauctionstartedeventvideo_every: OpenAuctionStartedEventWhereInput - videoreactedeventvideo_none: VideoReactedEventWhereInput - videoreactedeventvideo_some: VideoReactedEventWhereInput - videoreactedeventvideo_every: VideoReactedEventWhereInput - videoreactionspreferenceeventvideo_none: VideoReactionsPreferenceEventWhereInput - videoreactionspreferenceeventvideo_some: VideoReactionsPreferenceEventWhereInput - videoreactionspreferenceeventvideo_every: VideoReactionsPreferenceEventWhereInput - AND: [VideoWhereInput!] - OR: [VideoWhereInput!] - NOT: [VideoWhereInput!] + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + reactionId_eq: Int + reactionId_gt: Int + reactionId_gte: Int + reactionId_lt: Int + reactionId_lte: Int + reactionId_in: [Int!] + memberId_eq: String + memberId_contains: String + memberId_startsWith: String + memberId_endsWith: String + memberId_in: [String!] + member: MembershipWhereInput + comment: CommentWhereInput + video: VideoWhereInput + AND: [CommentReactionWhereInput!] + OR: [CommentReactionWhereInput!] + NOT: [CommentReactionWhereInput!] } -input VideoWhereUniqueInput { +input CommentReactionWhereUniqueInput { id: ID! } -input VideoCreateInput { - entryApp: ID - channel: ID! - category: ID - title: String - description: String - duration: Float - thumbnailPhoto: ID - language: ID - hasMarketing: Boolean - publishedBeforeJoystream: DateTime - isPublic: Boolean - isCensored: Boolean! - nft: ID - isExplicit: Boolean - license: ID - media: ID - videoStateBloatBond: String! - mediaMetadata: ID - createdInBlock: Float! - isCommentSectionEnabled: Boolean! - commentsCount: Float! - isReactionFeatureEnabled: Boolean! - reactionsCount: Float! - ytVideoId: String +input CommentReactionCreateInput { + reactionId: Float! + member: ID! + memberId: String! + comment: ID! + video: ID! } -input VideoUpdateInput { - entryApp: ID - channel: ID - category: ID - title: String - description: String - duration: Float - thumbnailPhoto: ID - language: ID - hasMarketing: Boolean - publishedBeforeJoystream: DateTime - isPublic: Boolean - isCensored: Boolean - nft: ID - isExplicit: Boolean - license: ID - media: ID - videoStateBloatBond: String - mediaMetadata: ID - createdInBlock: Float - isCommentSectionEnabled: Boolean - commentsCount: Float - isReactionFeatureEnabled: Boolean - reactionsCount: Float - ytVideoId: String +input CommentReactionUpdateInput { + reactionId: Float + member: ID + memberId: String + comment: ID + video: ID } -input ChannelPayoutsUpdatedEventWhereInput { +input CommentReactionsCountByReactionIdWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + reactionId_eq: Int + reactionId_gt: Int + reactionId_gte: Int + reactionId_lt: Int + reactionId_lte: Int + reactionId_in: [Int!] + count_eq: Int + count_gt: Int + count_gte: Int + count_lt: Int + count_lte: Int + count_in: [Int!] + comment: CommentWhereInput + video: VideoWhereInput + AND: [CommentReactionsCountByReactionIdWhereInput!] + OR: [CommentReactionsCountByReactionIdWhereInput!] + NOT: [CommentReactionsCountByReactionIdWhereInput!] +} + +input CommentReactionsCountByReactionIdWhereUniqueInput { + id: ID! +} + +input CommentReactionsCountByReactionIdCreateInput { + reactionId: Float! + count: Float! + comment: ID! + video: ID! +} + +input CommentReactionsCountByReactionIdUpdateInput { + reactionId: Float + count: Float + comment: ID + video: ID +} + +input CommentTextUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16994,75 +16539,122 @@ input ChannelPayoutsUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - commitment_eq: String - commitment_contains: String - commitment_startsWith: String - commitment_endsWith: String - commitment_in: [String!] - payloadSize_eq: BigInt - payloadSize_gt: BigInt - payloadSize_gte: BigInt - payloadSize_lt: BigInt - payloadSize_lte: BigInt - payloadSize_in: [BigInt!] - payloadHash_eq: String - payloadHash_contains: String - payloadHash_startsWith: String - payloadHash_endsWith: String - payloadHash_in: [String!] - minCashoutAllowed_eq: BigInt - minCashoutAllowed_gt: BigInt - minCashoutAllowed_gte: BigInt - minCashoutAllowed_lt: BigInt - minCashoutAllowed_lte: BigInt - minCashoutAllowed_in: [BigInt!] - maxCashoutAllowed_eq: BigInt - maxCashoutAllowed_gt: BigInt - maxCashoutAllowed_gte: BigInt - maxCashoutAllowed_lt: BigInt - maxCashoutAllowed_lte: BigInt - maxCashoutAllowed_in: [BigInt!] - channelCashoutsEnabled_eq: Boolean - channelCashoutsEnabled_in: [Boolean!] - payloadDataObject: StorageDataObjectWhereInput - AND: [ChannelPayoutsUpdatedEventWhereInput!] - OR: [ChannelPayoutsUpdatedEventWhereInput!] - NOT: [ChannelPayoutsUpdatedEventWhereInput!] + newText_eq: String + newText_contains: String + newText_startsWith: String + newText_endsWith: String + newText_in: [String!] + comment: CommentWhereInput + video: VideoWhereInput + videoChannel: ChannelWhereInput + AND: [CommentTextUpdatedEventWhereInput!] + OR: [CommentTextUpdatedEventWhereInput!] + NOT: [CommentTextUpdatedEventWhereInput!] +} + +input CommentTextUpdatedEventWhereUniqueInput { + id: ID! +} + +input CommentTextUpdatedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + comment: ID! + video: ID! + videoChannel: ID! + newText: String! +} + +input CommentTextUpdatedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + comment: ID + video: ID + videoChannel: ID + newText: String +} + +input CommentDeletedEventWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + comment: CommentWhereInput + video: VideoWhereInput + videoChannel: ChannelWhereInput + AND: [CommentDeletedEventWhereInput!] + OR: [CommentDeletedEventWhereInput!] + NOT: [CommentDeletedEventWhereInput!] } -input ChannelPayoutsUpdatedEventWhereUniqueInput { +input CommentDeletedEventWhereUniqueInput { id: ID! } -input ChannelPayoutsUpdatedEventCreateInput { +input CommentDeletedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - commitment: String - payloadDataObject: ID - payloadSize: String - payloadHash: String - minCashoutAllowed: String - maxCashoutAllowed: String - channelCashoutsEnabled: Boolean + comment: ID! + video: ID! + videoChannel: ID! } -input ChannelPayoutsUpdatedEventUpdateInput { +input CommentDeletedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - commitment: String - payloadDataObject: ID - payloadSize: String - payloadHash: String - minCashoutAllowed: String - maxCashoutAllowed: String - channelCashoutsEnabled: Boolean + comment: ID + video: ID + videoChannel: ID } -input StorageDataObjectWhereInput { +input CommentModeratedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17087,74 +16679,68 @@ input StorageDataObjectWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - isAccepted_eq: Boolean - isAccepted_in: [Boolean!] - size_eq: BigInt - size_gt: BigInt - size_gte: BigInt - size_lt: BigInt - size_lte: BigInt - size_in: [BigInt!] - ipfsHash_eq: String - ipfsHash_contains: String - ipfsHash_startsWith: String - ipfsHash_endsWith: String - ipfsHash_in: [String!] - type_json: JSONObject - stateBloatBond_eq: BigInt - stateBloatBond_gt: BigInt - stateBloatBond_gte: BigInt - stateBloatBond_lt: BigInt - stateBloatBond_lte: BigInt - stateBloatBond_in: [BigInt!] - unsetAt_eq: DateTime - unsetAt_lt: DateTime - unsetAt_lte: DateTime - unsetAt_gt: DateTime - unsetAt_gte: DateTime - storageBag: StorageBagWhereInput - videoThumbnail: VideoWhereInput - videoMedia: VideoWhereInput - videoSubtitle: VideoSubtitleWhereInput - channelcoverPhoto_none: ChannelWhereInput - channelcoverPhoto_some: ChannelWhereInput - channelcoverPhoto_every: ChannelWhereInput - channelavatarPhoto_none: ChannelWhereInput - channelavatarPhoto_some: ChannelWhereInput - channelavatarPhoto_every: ChannelWhereInput - channelpayoutsupdatedeventpayloadDataObject_none: ChannelPayoutsUpdatedEventWhereInput - channelpayoutsupdatedeventpayloadDataObject_some: ChannelPayoutsUpdatedEventWhereInput - channelpayoutsupdatedeventpayloadDataObject_every: ChannelPayoutsUpdatedEventWhereInput - AND: [StorageDataObjectWhereInput!] - OR: [StorageDataObjectWhereInput!] - NOT: [StorageDataObjectWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + actor_json: JSONObject + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + comment: CommentWhereInput + video: VideoWhereInput + videoChannel: ChannelWhereInput + AND: [CommentModeratedEventWhereInput!] + OR: [CommentModeratedEventWhereInput!] + NOT: [CommentModeratedEventWhereInput!] } -input StorageDataObjectWhereUniqueInput { +input CommentModeratedEventWhereUniqueInput { id: ID! } -input StorageDataObjectCreateInput { - isAccepted: Boolean! - size: String! - storageBag: ID! - ipfsHash: String! - type: JSONObject! - stateBloatBond: String! - unsetAt: DateTime +input CommentModeratedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + comment: ID! + video: ID! + videoChannel: ID! + actor: JSONObject! + rationale: String! } -input StorageDataObjectUpdateInput { - isAccepted: Boolean - size: String - storageBag: ID - ipfsHash: String - type: JSONObject - stateBloatBond: String - unsetAt: DateTime +input CommentModeratedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + comment: ID + video: ID + videoChannel: ID + actor: JSONObject + rationale: String } -input FundingRequestDestinationWhereInput { +input CommentPinnedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17179,40 +16765,62 @@ input FundingRequestDestinationWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - account_eq: String - account_contains: String - account_startsWith: String - account_endsWith: String - account_in: [String!] - list: FundingRequestDestinationsListWhereInput - AND: [FundingRequestDestinationWhereInput!] - OR: [FundingRequestDestinationWhereInput!] - NOT: [FundingRequestDestinationWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + action_eq: Boolean + action_in: [Boolean!] + comment: CommentWhereInput + video: VideoWhereInput + videoChannel: ChannelWhereInput + AND: [CommentPinnedEventWhereInput!] + OR: [CommentPinnedEventWhereInput!] + NOT: [CommentPinnedEventWhereInput!] } -input FundingRequestDestinationWhereUniqueInput { +input CommentPinnedEventWhereUniqueInput { id: ID! } -input FundingRequestDestinationCreateInput { - amount: String! - account: String! - list: ID! +input CommentPinnedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + comment: ID! + video: ID! + videoChannel: ID! + action: Boolean! } -input FundingRequestDestinationUpdateInput { - amount: String - account: String - list: ID +input CommentPinnedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + comment: ID + video: ID + videoChannel: ID + action: Boolean } -input FundingRequestDestinationsListWhereInput { +input CommentReactedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17237,33 +16845,69 @@ input FundingRequestDestinationsListWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - phantom_eq: Int - phantom_gt: Int - phantom_gte: Int - phantom_lt: Int - phantom_lte: Int - phantom_in: [Int!] - destinations_none: FundingRequestDestinationWhereInput - destinations_some: FundingRequestDestinationWhereInput - destinations_every: FundingRequestDestinationWhereInput - AND: [FundingRequestDestinationsListWhereInput!] - OR: [FundingRequestDestinationsListWhereInput!] - NOT: [FundingRequestDestinationsListWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + reactionResult_eq: Int + reactionResult_gt: Int + reactionResult_gte: Int + reactionResult_lt: Int + reactionResult_lte: Int + reactionResult_in: [Int!] + comment: CommentWhereInput + video: VideoWhereInput + videoChannel: ChannelWhereInput + reactingMember: MembershipWhereInput + AND: [CommentReactedEventWhereInput!] + OR: [CommentReactedEventWhereInput!] + NOT: [CommentReactedEventWhereInput!] } -input FundingRequestDestinationsListWhereUniqueInput { +input CommentReactedEventWhereUniqueInput { id: ID! } -input FundingRequestDestinationsListCreateInput { - phantom: Float +input CommentReactedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + comment: ID! + video: ID! + videoChannel: ID! + reactionResult: Float! + reactingMember: ID! } -input FundingRequestDestinationsListUpdateInput { - phantom: Float +input CommentReactedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + comment: ID + video: ID + videoChannel: ID + reactionResult: Float + reactingMember: ID } -input MembershipExternalResourceWhereInput { +input CommentWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17288,39 +16932,93 @@ input MembershipExternalResourceWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - type_eq: MembershipExternalResourceType - type_in: [MembershipExternalResourceType!] - value_eq: String - value_contains: String - value_startsWith: String - value_endsWith: String - value_in: [String!] - memberMetadata: MemberMetadataWhereInput - member: MembershipWhereInput - AND: [MembershipExternalResourceWhereInput!] - OR: [MembershipExternalResourceWhereInput!] - NOT: [MembershipExternalResourceWhereInput!] + text_eq: String + text_contains: String + text_startsWith: String + text_endsWith: String + text_in: [String!] + status_eq: CommentStatus + status_in: [CommentStatus!] + repliesCount_eq: Int + repliesCount_gt: Int + repliesCount_gte: Int + repliesCount_lt: Int + repliesCount_lte: Int + repliesCount_in: [Int!] + reactionsCount_eq: Int + reactionsCount_gt: Int + reactionsCount_gte: Int + reactionsCount_lt: Int + reactionsCount_lte: Int + reactionsCount_in: [Int!] + reactionsAndRepliesCount_eq: Int + reactionsAndRepliesCount_gt: Int + reactionsAndRepliesCount_gte: Int + reactionsAndRepliesCount_lt: Int + reactionsAndRepliesCount_lte: Int + reactionsAndRepliesCount_in: [Int!] + isEdited_eq: Boolean + isEdited_in: [Boolean!] + author: MembershipWhereInput + video: VideoWhereInput + reactions_none: CommentReactionWhereInput + reactions_some: CommentReactionWhereInput + reactions_every: CommentReactionWhereInput + reactionsCountByReactionId_none: CommentReactionsCountByReactionIdWhereInput + reactionsCountByReactionId_some: CommentReactionsCountByReactionIdWhereInput + reactionsCountByReactionId_every: CommentReactionsCountByReactionIdWhereInput + parentComment: CommentWhereInput + edits_none: CommentTextUpdatedEventWhereInput + edits_some: CommentTextUpdatedEventWhereInput + edits_every: CommentTextUpdatedEventWhereInput + deletedInEvent: CommentDeletedEventWhereInput + moderatedInEvent: CommentModeratedEventWhereInput + commentparentComment_none: CommentWhereInput + commentparentComment_some: CommentWhereInput + commentparentComment_every: CommentWhereInput + commentcreatedeventcomment_none: CommentCreatedEventWhereInput + commentcreatedeventcomment_some: CommentCreatedEventWhereInput + commentcreatedeventcomment_every: CommentCreatedEventWhereInput + commentpinnedeventcomment_none: CommentPinnedEventWhereInput + commentpinnedeventcomment_some: CommentPinnedEventWhereInput + commentpinnedeventcomment_every: CommentPinnedEventWhereInput + commentreactedeventcomment_none: CommentReactedEventWhereInput + commentreactedeventcomment_some: CommentReactedEventWhereInput + commentreactedeventcomment_every: CommentReactedEventWhereInput + AND: [CommentWhereInput!] + OR: [CommentWhereInput!] + NOT: [CommentWhereInput!] } -input MembershipExternalResourceWhereUniqueInput { +input CommentWhereUniqueInput { id: ID! } -input MembershipExternalResourceCreateInput { - type: MembershipExternalResourceType! - value: String! - memberMetadata: ID! - member: ID +input CommentCreateInput { + author: ID! + text: String! + video: ID! + status: CommentStatus! + parentComment: ID + repliesCount: Float! + reactionsCount: Float! + reactionsAndRepliesCount: Float! + isEdited: Boolean! } -input MembershipExternalResourceUpdateInput { - type: MembershipExternalResourceType - value: String - memberMetadata: ID - member: ID +input CommentUpdateInput { + author: ID + text: String + video: ID + status: CommentStatus + parentComment: ID + repliesCount: Float + reactionsCount: Float + reactionsAndRepliesCount: Float + isEdited: Boolean } -input MemberCreatedEventWhereInput { +input CommentCreatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17364,61 +17062,49 @@ input MemberCreatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - rootAccount_eq: String - rootAccount_contains: String - rootAccount_startsWith: String - rootAccount_endsWith: String - rootAccount_in: [String!] - controllerAccount_eq: String - controllerAccount_contains: String - controllerAccount_startsWith: String - controllerAccount_endsWith: String - controllerAccount_in: [String!] - handle_eq: String - handle_contains: String - handle_startsWith: String - handle_endsWith: String - handle_in: [String!] - isFoundingMember_eq: Boolean - isFoundingMember_in: [Boolean!] - newMember: MembershipWhereInput - metadata: MemberMetadataWhereInput - AND: [MemberCreatedEventWhereInput!] - OR: [MemberCreatedEventWhereInput!] - NOT: [MemberCreatedEventWhereInput!] + text_eq: String + text_contains: String + text_startsWith: String + text_endsWith: String + text_in: [String!] + comment: CommentWhereInput + parentCommentAuthor: MembershipWhereInput + video: VideoWhereInput + videoChannel: ChannelWhereInput + AND: [CommentCreatedEventWhereInput!] + OR: [CommentCreatedEventWhereInput!] + NOT: [CommentCreatedEventWhereInput!] } -input MemberCreatedEventWhereUniqueInput { +input CommentCreatedEventWhereUniqueInput { id: ID! } -input MemberCreatedEventCreateInput { +input CommentCreatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - newMember: ID! - rootAccount: String! - controllerAccount: String! - handle: String! - metadata: ID! - isFoundingMember: Boolean! + comment: ID! + parentCommentAuthor: ID + video: ID! + videoChannel: ID! + text: String! } -input MemberCreatedEventUpdateInput { +input CommentCreatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - newMember: ID - rootAccount: String - controllerAccount: String - handle: String - metadata: ID - isFoundingMember: Boolean + comment: ID + parentCommentAuthor: ID + video: ID + videoChannel: ID + text: String } -input MemberInvitedEventWhereInput { +input MemberBannedFromChannelEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17462,68 +17148,40 @@ input MemberInvitedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - rootAccount_eq: String - rootAccount_contains: String - rootAccount_startsWith: String - rootAccount_endsWith: String - rootAccount_in: [String!] - controllerAccount_eq: String - controllerAccount_contains: String - controllerAccount_startsWith: String - controllerAccount_endsWith: String - controllerAccount_in: [String!] - handle_eq: String - handle_contains: String - handle_startsWith: String - handle_endsWith: String - handle_in: [String!] - initialBalance_eq: BigInt - initialBalance_gt: BigInt - initialBalance_gte: BigInt - initialBalance_lt: BigInt - initialBalance_lte: BigInt - initialBalance_in: [BigInt!] - invitingMember: MembershipWhereInput - newMember: MembershipWhereInput - metadata: MemberMetadataWhereInput - AND: [MemberInvitedEventWhereInput!] - OR: [MemberInvitedEventWhereInput!] - NOT: [MemberInvitedEventWhereInput!] + action_eq: Boolean + action_in: [Boolean!] + channel: ChannelWhereInput + member: MembershipWhereInput + AND: [MemberBannedFromChannelEventWhereInput!] + OR: [MemberBannedFromChannelEventWhereInput!] + NOT: [MemberBannedFromChannelEventWhereInput!] } -input MemberInvitedEventWhereUniqueInput { +input MemberBannedFromChannelEventWhereUniqueInput { id: ID! } -input MemberInvitedEventCreateInput { +input MemberBannedFromChannelEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - invitingMember: ID! - newMember: ID! - rootAccount: String! - controllerAccount: String! - handle: String! - metadata: ID! - initialBalance: String! + channel: ID! + member: ID! + action: Boolean! } -input MemberInvitedEventUpdateInput { +input MemberBannedFromChannelEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - invitingMember: ID - newMember: ID - rootAccount: String - controllerAccount: String - handle: String - metadata: ID - initialBalance: String + channel: ID + member: ID + action: Boolean } -input MemberProfileUpdatedEventWhereInput { +input VideoReactedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17567,50 +17225,294 @@ input MemberProfileUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newHandle_eq: String - newHandle_contains: String - newHandle_startsWith: String - newHandle_endsWith: String - newHandle_in: [String!] - newHandleRaw_eq: String - newHandleRaw_contains: String - newHandleRaw_startsWith: String - newHandleRaw_endsWith: String - newHandleRaw_in: [String!] - member: MembershipWhereInput - newMetadata: MemberMetadataWhereInput - AND: [MemberProfileUpdatedEventWhereInput!] - OR: [MemberProfileUpdatedEventWhereInput!] - NOT: [MemberProfileUpdatedEventWhereInput!] + reactionResult_eq: VideoReactionOptions + reactionResult_in: [VideoReactionOptions!] + video: VideoWhereInput + videoChannel: ChannelWhereInput + reactingMember: MembershipWhereInput + AND: [VideoReactedEventWhereInput!] + OR: [VideoReactedEventWhereInput!] + NOT: [VideoReactedEventWhereInput!] +} + +input VideoReactedEventWhereUniqueInput { + id: ID! +} + +input VideoReactedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + video: ID! + videoChannel: ID! + reactionResult: VideoReactionOptions! + reactingMember: ID! +} + +input VideoReactedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + video: ID + videoChannel: ID + reactionResult: VideoReactionOptions + reactingMember: ID +} + +input ChannelWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + title_eq: String + title_contains: String + title_startsWith: String + title_endsWith: String + title_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + activeVideosCounter_eq: Int + activeVideosCounter_gt: Int + activeVideosCounter_gte: Int + activeVideosCounter_lt: Int + activeVideosCounter_lte: Int + activeVideosCounter_in: [Int!] + isPublic_eq: Boolean + isPublic_in: [Boolean!] + isCensored_eq: Boolean + isCensored_in: [Boolean!] + createdInBlock_eq: Int + createdInBlock_gt: Int + createdInBlock_gte: Int + createdInBlock_lt: Int + createdInBlock_lte: Int + createdInBlock_in: [Int!] + rewardAccount_eq: String + rewardAccount_contains: String + rewardAccount_startsWith: String + rewardAccount_endsWith: String + rewardAccount_in: [String!] + channelStateBloatBond_eq: BigInt + channelStateBloatBond_gt: BigInt + channelStateBloatBond_gte: BigInt + channelStateBloatBond_lt: BigInt + channelStateBloatBond_lte: BigInt + channelStateBloatBond_in: [BigInt!] + privilegeLevel_eq: Int + privilegeLevel_gt: Int + privilegeLevel_gte: Int + privilegeLevel_lt: Int + privilegeLevel_lte: Int + privilegeLevel_in: [Int!] + cumulativeRewardClaimed_eq: BigInt + cumulativeRewardClaimed_gt: BigInt + cumulativeRewardClaimed_gte: BigInt + cumulativeRewardClaimed_lt: BigInt + cumulativeRewardClaimed_lte: BigInt + cumulativeRewardClaimed_in: [BigInt!] + totalVideosCreated_eq: Int + totalVideosCreated_gt: Int + totalVideosCreated_gte: Int + totalVideosCreated_lt: Int + totalVideosCreated_lte: Int + totalVideosCreated_in: [Int!] + entryApp: AppWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + coverPhoto: StorageDataObjectWhereInput + avatarPhoto: StorageDataObjectWhereInput + language: LanguageWhereInput + videos_none: VideoWhereInput + videos_some: VideoWhereInput + videos_every: VideoWhereInput + collaborators_none: CollaboratorWhereInput + collaborators_some: CollaboratorWhereInput + collaborators_every: CollaboratorWhereInput + bannedMembers_none: MembershipWhereInput + bannedMembers_some: MembershipWhereInput + bannedMembers_every: MembershipWhereInput + channelNftCollectors_none: ChannelNftCollectorsWhereInput + channelNftCollectors_some: ChannelNftCollectorsWhereInput + channelNftCollectors_every: ChannelNftCollectorsWhereInput + claimedRewards_none: ChannelRewardClaimedEventWhereInput + claimedRewards_some: ChannelRewardClaimedEventWhereInput + claimedRewards_every: ChannelRewardClaimedEventWhereInput + channelfundswithdrawneventchannel_none: ChannelFundsWithdrawnEventWhereInput + channelfundswithdrawneventchannel_some: ChannelFundsWithdrawnEventWhereInput + channelfundswithdrawneventchannel_every: ChannelFundsWithdrawnEventWhereInput + channelpaymentmadeeventpayeeChannel_none: ChannelPaymentMadeEventWhereInput + channelpaymentmadeeventpayeeChannel_some: ChannelPaymentMadeEventWhereInput + channelpaymentmadeeventpayeeChannel_every: ChannelPaymentMadeEventWhereInput + channelrewardclaimedandwithdrawneventchannel_none: ChannelRewardClaimedAndWithdrawnEventWhereInput + channelrewardclaimedandwithdrawneventchannel_some: ChannelRewardClaimedAndWithdrawnEventWhereInput + channelrewardclaimedandwithdrawneventchannel_every: ChannelRewardClaimedAndWithdrawnEventWhereInput + commentcreatedeventvideoChannel_none: CommentCreatedEventWhereInput + commentcreatedeventvideoChannel_some: CommentCreatedEventWhereInput + commentcreatedeventvideoChannel_every: CommentCreatedEventWhereInput + commentdeletedeventvideoChannel_none: CommentDeletedEventWhereInput + commentdeletedeventvideoChannel_some: CommentDeletedEventWhereInput + commentdeletedeventvideoChannel_every: CommentDeletedEventWhereInput + commentmoderatedeventvideoChannel_none: CommentModeratedEventWhereInput + commentmoderatedeventvideoChannel_some: CommentModeratedEventWhereInput + commentmoderatedeventvideoChannel_every: CommentModeratedEventWhereInput + commentpinnedeventvideoChannel_none: CommentPinnedEventWhereInput + commentpinnedeventvideoChannel_some: CommentPinnedEventWhereInput + commentpinnedeventvideoChannel_every: CommentPinnedEventWhereInput + commentreactedeventvideoChannel_none: CommentReactedEventWhereInput + commentreactedeventvideoChannel_some: CommentReactedEventWhereInput + commentreactedeventvideoChannel_every: CommentReactedEventWhereInput + commenttextupdatedeventvideoChannel_none: CommentTextUpdatedEventWhereInput + commenttextupdatedeventvideoChannel_some: CommentTextUpdatedEventWhereInput + commenttextupdatedeventvideoChannel_every: CommentTextUpdatedEventWhereInput + memberbannedfromchanneleventchannel_none: MemberBannedFromChannelEventWhereInput + memberbannedfromchanneleventchannel_some: MemberBannedFromChannelEventWhereInput + memberbannedfromchanneleventchannel_every: MemberBannedFromChannelEventWhereInput + ownednftcreatorChannel_none: OwnedNftWhereInput + ownednftcreatorChannel_some: OwnedNftWhereInput + ownednftcreatorChannel_every: OwnedNftWhereInput + videoreactedeventvideoChannel_none: VideoReactedEventWhereInput + videoreactedeventvideoChannel_some: VideoReactedEventWhereInput + videoreactedeventvideoChannel_every: VideoReactedEventWhereInput + AND: [ChannelWhereInput!] + OR: [ChannelWhereInput!] + NOT: [ChannelWhereInput!] +} + +input ChannelWhereUniqueInput { + id: ID! +} + +input ChannelCreateInput { + entryApp: ID + ownerMember: ID + ownerCuratorGroup: ID + title: String + description: String + activeVideosCounter: Float! + coverPhoto: ID + avatarPhoto: ID + isPublic: Boolean + isCensored: Boolean! + language: ID + createdInBlock: Float! + rewardAccount: String! + channelStateBloatBond: String! + privilegeLevel: Float + cumulativeRewardClaimed: String + totalVideosCreated: Float! +} + +input ChannelUpdateInput { + entryApp: ID + ownerMember: ID + ownerCuratorGroup: ID + title: String + description: String + activeVideosCounter: Float + coverPhoto: ID + avatarPhoto: ID + isPublic: Boolean + isCensored: Boolean + language: ID + createdInBlock: Float + rewardAccount: String + channelStateBloatBond: String + privilegeLevel: Float + cumulativeRewardClaimed: String + totalVideosCreated: Float +} + +input LicenseWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + code_eq: Int + code_gt: Int + code_gte: Int + code_lt: Int + code_lte: Int + code_in: [Int!] + attribution_eq: String + attribution_contains: String + attribution_startsWith: String + attribution_endsWith: String + attribution_in: [String!] + customText_eq: String + customText_contains: String + customText_startsWith: String + customText_endsWith: String + customText_in: [String!] + videolicense_none: VideoWhereInput + videolicense_some: VideoWhereInput + videolicense_every: VideoWhereInput + AND: [LicenseWhereInput!] + OR: [LicenseWhereInput!] + NOT: [LicenseWhereInput!] } -input MemberProfileUpdatedEventWhereUniqueInput { +input LicenseWhereUniqueInput { id: ID! } -input MemberProfileUpdatedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - member: ID! - newHandle: String - newHandleRaw: String - newMetadata: ID! +input LicenseCreateInput { + code: Float + attribution: String + customText: String } -input MemberProfileUpdatedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - member: ID - newHandle: String - newHandleRaw: String - newMetadata: ID +input LicenseUpdateInput { + code: Float + attribution: String + customText: String } -input MembershipBoughtEventWhereInput { +input VideoMediaEncodingWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17635,79 +17537,46 @@ input MembershipBoughtEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - rootAccount_eq: String - rootAccount_contains: String - rootAccount_startsWith: String - rootAccount_endsWith: String - rootAccount_in: [String!] - controllerAccount_eq: String - controllerAccount_contains: String - controllerAccount_startsWith: String - controllerAccount_endsWith: String - controllerAccount_in: [String!] - handle_eq: String - handle_contains: String - handle_startsWith: String - handle_endsWith: String - handle_in: [String!] - newMember: MembershipWhereInput - metadata: MemberMetadataWhereInput - referrer: MembershipWhereInput - AND: [MembershipBoughtEventWhereInput!] - OR: [MembershipBoughtEventWhereInput!] - NOT: [MembershipBoughtEventWhereInput!] + codecName_eq: String + codecName_contains: String + codecName_startsWith: String + codecName_endsWith: String + codecName_in: [String!] + container_eq: String + container_contains: String + container_startsWith: String + container_endsWith: String + container_in: [String!] + mimeMediaType_eq: String + mimeMediaType_contains: String + mimeMediaType_startsWith: String + mimeMediaType_endsWith: String + mimeMediaType_in: [String!] + videomediametadataencoding_none: VideoMediaMetadataWhereInput + videomediametadataencoding_some: VideoMediaMetadataWhereInput + videomediametadataencoding_every: VideoMediaMetadataWhereInput + AND: [VideoMediaEncodingWhereInput!] + OR: [VideoMediaEncodingWhereInput!] + NOT: [VideoMediaEncodingWhereInput!] } -input MembershipBoughtEventWhereUniqueInput { +input VideoMediaEncodingWhereUniqueInput { id: ID! } -input MembershipBoughtEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - newMember: ID! - rootAccount: String! - controllerAccount: String! - handle: String! - metadata: ID! - referrer: ID +input VideoMediaEncodingCreateInput { + codecName: String + container: String + mimeMediaType: String } -input MembershipBoughtEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - newMember: ID - rootAccount: String - controllerAccount: String - handle: String - metadata: ID - referrer: ID +input VideoMediaEncodingUpdateInput { + codecName: String + container: String + mimeMediaType: String } -input MemberMetadataWhereInput { +input VideoMediaMetadataWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17732,62 +17601,58 @@ input MemberMetadataWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - name_eq: String - name_contains: String - name_startsWith: String - name_endsWith: String - name_in: [String!] - avatar_json: JSONObject - about_eq: String - about_contains: String - about_startsWith: String - about_endsWith: String - about_in: [String!] - isVerifiedValidator_eq: Boolean - isVerifiedValidator_in: [Boolean!] - member: MembershipWhereInput - externalResources_none: MembershipExternalResourceWhereInput - externalResources_some: MembershipExternalResourceWhereInput - externalResources_every: MembershipExternalResourceWhereInput - membercreatedeventmetadata_none: MemberCreatedEventWhereInput - membercreatedeventmetadata_some: MemberCreatedEventWhereInput - membercreatedeventmetadata_every: MemberCreatedEventWhereInput - memberinvitedeventmetadata_none: MemberInvitedEventWhereInput - memberinvitedeventmetadata_some: MemberInvitedEventWhereInput - memberinvitedeventmetadata_every: MemberInvitedEventWhereInput - memberprofileupdatedeventnewMetadata_none: MemberProfileUpdatedEventWhereInput - memberprofileupdatedeventnewMetadata_some: MemberProfileUpdatedEventWhereInput - memberprofileupdatedeventnewMetadata_every: MemberProfileUpdatedEventWhereInput - membershipboughteventmetadata_none: MembershipBoughtEventWhereInput - membershipboughteventmetadata_some: MembershipBoughtEventWhereInput - membershipboughteventmetadata_every: MembershipBoughtEventWhereInput - membershipgiftedeventmetadata_none: MembershipGiftedEventWhereInput - membershipgiftedeventmetadata_some: MembershipGiftedEventWhereInput - membershipgiftedeventmetadata_every: MembershipGiftedEventWhereInput - AND: [MemberMetadataWhereInput!] - OR: [MemberMetadataWhereInput!] - NOT: [MemberMetadataWhereInput!] + pixelWidth_eq: Int + pixelWidth_gt: Int + pixelWidth_gte: Int + pixelWidth_lt: Int + pixelWidth_lte: Int + pixelWidth_in: [Int!] + pixelHeight_eq: Int + pixelHeight_gt: Int + pixelHeight_gte: Int + pixelHeight_lt: Int + pixelHeight_lte: Int + pixelHeight_in: [Int!] + size_eq: BigInt + size_gt: BigInt + size_gte: BigInt + size_lt: BigInt + size_lte: BigInt + size_in: [BigInt!] + createdInBlock_eq: Int + createdInBlock_gt: Int + createdInBlock_gte: Int + createdInBlock_lt: Int + createdInBlock_lte: Int + createdInBlock_in: [Int!] + encoding: VideoMediaEncodingWhereInput + video: VideoWhereInput + AND: [VideoMediaMetadataWhereInput!] + OR: [VideoMediaMetadataWhereInput!] + NOT: [VideoMediaMetadataWhereInput!] } -input MemberMetadataWhereUniqueInput { +input VideoMediaMetadataWhereUniqueInput { id: ID! } -input MemberMetadataCreateInput { - name: String - avatar: JSONObject! - about: String - isVerifiedValidator: Boolean +input VideoMediaMetadataCreateInput { + encoding: ID + pixelWidth: Float + pixelHeight: Float + size: String + createdInBlock: Float! } -input MemberMetadataUpdateInput { - name: String - avatar: JSONObject - about: String - isVerifiedValidator: Boolean +input VideoMediaMetadataUpdateInput { + encoding: ID + pixelWidth: Float + pixelHeight: Float + size: String + createdInBlock: Float } -input MembershipGiftedEventWhereInput { +input VideoReactionWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17812,76 +17677,39 @@ input MembershipGiftedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - rootAccount_eq: String - rootAccount_contains: String - rootAccount_startsWith: String - rootAccount_endsWith: String - rootAccount_in: [String!] - controllerAccount_eq: String - controllerAccount_contains: String - controllerAccount_startsWith: String - controllerAccount_endsWith: String - controllerAccount_in: [String!] - handle_eq: String - handle_contains: String - handle_startsWith: String - handle_endsWith: String - handle_in: [String!] - newMember: MembershipWhereInput - metadata: MemberMetadataWhereInput - AND: [MembershipGiftedEventWhereInput!] - OR: [MembershipGiftedEventWhereInput!] - NOT: [MembershipGiftedEventWhereInput!] + reaction_eq: VideoReactionOptions + reaction_in: [VideoReactionOptions!] + memberId_eq: String + memberId_contains: String + memberId_startsWith: String + memberId_endsWith: String + memberId_in: [String!] + member: MembershipWhereInput + video: VideoWhereInput + AND: [VideoReactionWhereInput!] + OR: [VideoReactionWhereInput!] + NOT: [VideoReactionWhereInput!] } -input MembershipGiftedEventWhereUniqueInput { +input VideoReactionWhereUniqueInput { id: ID! } -input MembershipGiftedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - newMember: ID! - rootAccount: String! - controllerAccount: String! - handle: String! - metadata: ID! +input VideoReactionCreateInput { + reaction: VideoReactionOptions! + member: ID! + memberId: String! + video: ID! } -input MembershipGiftedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - newMember: ID - rootAccount: String - controllerAccount: String - handle: String - metadata: ID +input VideoReactionUpdateInput { + reaction: VideoReactionOptions + member: ID + memberId: String + video: ID } -input ProposalCreatedEventWhereInput { +input VideoReactionsCountByReactionTypeWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17906,52 +17734,37 @@ input ProposalCreatedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - proposal: ProposalWhereInput - AND: [ProposalCreatedEventWhereInput!] - OR: [ProposalCreatedEventWhereInput!] - NOT: [ProposalCreatedEventWhereInput!] + reaction_eq: VideoReactionOptions + reaction_in: [VideoReactionOptions!] + count_eq: Int + count_gt: Int + count_gte: Int + count_lt: Int + count_lte: Int + count_in: [Int!] + video: VideoWhereInput + AND: [VideoReactionsCountByReactionTypeWhereInput!] + OR: [VideoReactionsCountByReactionTypeWhereInput!] + NOT: [VideoReactionsCountByReactionTypeWhereInput!] } -input ProposalCreatedEventWhereUniqueInput { +input VideoReactionsCountByReactionTypeWhereUniqueInput { id: ID! } -input ProposalCreatedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - proposal: ID! +input VideoReactionsCountByReactionTypeCreateInput { + reaction: VideoReactionOptions! + count: Float! + video: ID! } -input ProposalCreatedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - proposal: ID +input VideoReactionsCountByReactionTypeUpdateInput { + reaction: VideoReactionOptions + count: Float + video: ID } -input ProposalStatusUpdatedEventWhereInput { +input VideoReactionsPreferenceEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17995,36 +17808,37 @@ input ProposalStatusUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newStatus_json: JSONObject - proposal: ProposalWhereInput - AND: [ProposalStatusUpdatedEventWhereInput!] - OR: [ProposalStatusUpdatedEventWhereInput!] - NOT: [ProposalStatusUpdatedEventWhereInput!] + reactionsStatus_eq: Boolean + reactionsStatus_in: [Boolean!] + video: VideoWhereInput + AND: [VideoReactionsPreferenceEventWhereInput!] + OR: [VideoReactionsPreferenceEventWhereInput!] + NOT: [VideoReactionsPreferenceEventWhereInput!] } -input ProposalStatusUpdatedEventWhereUniqueInput { +input VideoReactionsPreferenceEventWhereUniqueInput { id: ID! } -input ProposalStatusUpdatedEventCreateInput { +input VideoReactionsPreferenceEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - proposal: ID! - newStatus: JSONObject! + video: ID! + reactionsStatus: Boolean! } -input ProposalStatusUpdatedEventUpdateInput { +input VideoReactionsPreferenceEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - proposal: ID - newStatus: JSONObject + video: ID + reactionsStatus: Boolean } -input ProposalVotedEventWhereInput { +input VideoWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18049,74 +17863,235 @@ input ProposalVotedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - voteKind_eq: ProposalVoteKind - voteKind_in: [ProposalVoteKind!] - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - votingRound_eq: Int - votingRound_gt: Int - votingRound_gte: Int - votingRound_lt: Int - votingRound_lte: Int - votingRound_in: [Int!] - voter: MembershipWhereInput - proposal: ProposalWhereInput - AND: [ProposalVotedEventWhereInput!] - OR: [ProposalVotedEventWhereInput!] - NOT: [ProposalVotedEventWhereInput!] + title_eq: String + title_contains: String + title_startsWith: String + title_endsWith: String + title_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + duration_eq: Int + duration_gt: Int + duration_gte: Int + duration_lt: Int + duration_lte: Int + duration_in: [Int!] + hasMarketing_eq: Boolean + hasMarketing_in: [Boolean!] + publishedBeforeJoystream_eq: DateTime + publishedBeforeJoystream_lt: DateTime + publishedBeforeJoystream_lte: DateTime + publishedBeforeJoystream_gt: DateTime + publishedBeforeJoystream_gte: DateTime + isPublic_eq: Boolean + isPublic_in: [Boolean!] + isCensored_eq: Boolean + isCensored_in: [Boolean!] + isExplicit_eq: Boolean + isExplicit_in: [Boolean!] + videoStateBloatBond_eq: BigInt + videoStateBloatBond_gt: BigInt + videoStateBloatBond_gte: BigInt + videoStateBloatBond_lt: BigInt + videoStateBloatBond_lte: BigInt + videoStateBloatBond_in: [BigInt!] + createdInBlock_eq: Int + createdInBlock_gt: Int + createdInBlock_gte: Int + createdInBlock_lt: Int + createdInBlock_lte: Int + createdInBlock_in: [Int!] + isCommentSectionEnabled_eq: Boolean + isCommentSectionEnabled_in: [Boolean!] + commentsCount_eq: Int + commentsCount_gt: Int + commentsCount_gte: Int + commentsCount_lt: Int + commentsCount_lte: Int + commentsCount_in: [Int!] + isReactionFeatureEnabled_eq: Boolean + isReactionFeatureEnabled_in: [Boolean!] + reactionsCount_eq: Int + reactionsCount_gt: Int + reactionsCount_gte: Int + reactionsCount_lt: Int + reactionsCount_lte: Int + reactionsCount_in: [Int!] + ytVideoId_eq: String + ytVideoId_contains: String + ytVideoId_startsWith: String + ytVideoId_endsWith: String + ytVideoId_in: [String!] + entryApp: AppWhereInput + channel: ChannelWhereInput + category: VideoCategoryWhereInput + thumbnailPhoto: StorageDataObjectWhereInput + language: LanguageWhereInput + nft: OwnedNftWhereInput + license: LicenseWhereInput + media: StorageDataObjectWhereInput + mediaMetadata: VideoMediaMetadataWhereInput + subtitles_none: VideoSubtitleWhereInput + subtitles_some: VideoSubtitleWhereInput + subtitles_every: VideoSubtitleWhereInput + pinnedComment: CommentWhereInput + comments_none: CommentWhereInput + comments_some: CommentWhereInput + comments_every: CommentWhereInput + reactions_none: VideoReactionWhereInput + reactions_some: VideoReactionWhereInput + reactions_every: VideoReactionWhereInput + reactionsCountByReactionId_none: VideoReactionsCountByReactionTypeWhereInput + reactionsCountByReactionId_some: VideoReactionsCountByReactionTypeWhereInput + reactionsCountByReactionId_every: VideoReactionsCountByReactionTypeWhereInput + auctionbidcanceledeventvideo_none: AuctionBidCanceledEventWhereInput + auctionbidcanceledeventvideo_some: AuctionBidCanceledEventWhereInput + auctionbidcanceledeventvideo_every: AuctionBidCanceledEventWhereInput + auctionbidmadeeventvideo_none: AuctionBidMadeEventWhereInput + auctionbidmadeeventvideo_some: AuctionBidMadeEventWhereInput + auctionbidmadeeventvideo_every: AuctionBidMadeEventWhereInput + auctioncanceledeventvideo_none: AuctionCanceledEventWhereInput + auctioncanceledeventvideo_some: AuctionCanceledEventWhereInput + auctioncanceledeventvideo_every: AuctionCanceledEventWhereInput + bidmadecompletingauctioneventvideo_none: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventvideo_some: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventvideo_every: BidMadeCompletingAuctionEventWhereInput + buynowcanceledeventvideo_none: BuyNowCanceledEventWhereInput + buynowcanceledeventvideo_some: BuyNowCanceledEventWhereInput + buynowcanceledeventvideo_every: BuyNowCanceledEventWhereInput + buynowpriceupdatedeventvideo_none: BuyNowPriceUpdatedEventWhereInput + buynowpriceupdatedeventvideo_some: BuyNowPriceUpdatedEventWhereInput + buynowpriceupdatedeventvideo_every: BuyNowPriceUpdatedEventWhereInput + commentcreatedeventvideo_none: CommentCreatedEventWhereInput + commentcreatedeventvideo_some: CommentCreatedEventWhereInput + commentcreatedeventvideo_every: CommentCreatedEventWhereInput + commentdeletedeventvideo_none: CommentDeletedEventWhereInput + commentdeletedeventvideo_some: CommentDeletedEventWhereInput + commentdeletedeventvideo_every: CommentDeletedEventWhereInput + commentmoderatedeventvideo_none: CommentModeratedEventWhereInput + commentmoderatedeventvideo_some: CommentModeratedEventWhereInput + commentmoderatedeventvideo_every: CommentModeratedEventWhereInput + commentpinnedeventvideo_none: CommentPinnedEventWhereInput + commentpinnedeventvideo_some: CommentPinnedEventWhereInput + commentpinnedeventvideo_every: CommentPinnedEventWhereInput + commentreactedeventvideo_none: CommentReactedEventWhereInput + commentreactedeventvideo_some: CommentReactedEventWhereInput + commentreactedeventvideo_every: CommentReactedEventWhereInput + commentreactionvideo_none: CommentReactionWhereInput + commentreactionvideo_some: CommentReactionWhereInput + commentreactionvideo_every: CommentReactionWhereInput + commentreactionscountbyreactionidvideo_none: CommentReactionsCountByReactionIdWhereInput + commentreactionscountbyreactionidvideo_some: CommentReactionsCountByReactionIdWhereInput + commentreactionscountbyreactionidvideo_every: CommentReactionsCountByReactionIdWhereInput + commenttextupdatedeventvideo_none: CommentTextUpdatedEventWhereInput + commenttextupdatedeventvideo_some: CommentTextUpdatedEventWhereInput + commenttextupdatedeventvideo_every: CommentTextUpdatedEventWhereInput + englishauctionsettledeventvideo_none: EnglishAuctionSettledEventWhereInput + englishauctionsettledeventvideo_some: EnglishAuctionSettledEventWhereInput + englishauctionsettledeventvideo_every: EnglishAuctionSettledEventWhereInput + englishauctionstartedeventvideo_none: EnglishAuctionStartedEventWhereInput + englishauctionstartedeventvideo_some: EnglishAuctionStartedEventWhereInput + englishauctionstartedeventvideo_every: EnglishAuctionStartedEventWhereInput + nftboughteventvideo_none: NftBoughtEventWhereInput + nftboughteventvideo_some: NftBoughtEventWhereInput + nftboughteventvideo_every: NftBoughtEventWhereInput + nftissuedeventvideo_none: NftIssuedEventWhereInput + nftissuedeventvideo_some: NftIssuedEventWhereInput + nftissuedeventvideo_every: NftIssuedEventWhereInput + nftsellordermadeeventvideo_none: NftSellOrderMadeEventWhereInput + nftsellordermadeeventvideo_some: NftSellOrderMadeEventWhereInput + nftsellordermadeeventvideo_every: NftSellOrderMadeEventWhereInput + nftslingedbacktotheoriginalartisteventvideo_none: NftSlingedBackToTheOriginalArtistEventWhereInput + nftslingedbacktotheoriginalartisteventvideo_some: NftSlingedBackToTheOriginalArtistEventWhereInput + nftslingedbacktotheoriginalartisteventvideo_every: NftSlingedBackToTheOriginalArtistEventWhereInput + offeracceptedeventvideo_none: OfferAcceptedEventWhereInput + offeracceptedeventvideo_some: OfferAcceptedEventWhereInput + offeracceptedeventvideo_every: OfferAcceptedEventWhereInput + offercanceledeventvideo_none: OfferCanceledEventWhereInput + offercanceledeventvideo_some: OfferCanceledEventWhereInput + offercanceledeventvideo_every: OfferCanceledEventWhereInput + offerstartedeventvideo_none: OfferStartedEventWhereInput + offerstartedeventvideo_some: OfferStartedEventWhereInput + offerstartedeventvideo_every: OfferStartedEventWhereInput + openauctionbidacceptedeventvideo_none: OpenAuctionBidAcceptedEventWhereInput + openauctionbidacceptedeventvideo_some: OpenAuctionBidAcceptedEventWhereInput + openauctionbidacceptedeventvideo_every: OpenAuctionBidAcceptedEventWhereInput + openauctionstartedeventvideo_none: OpenAuctionStartedEventWhereInput + openauctionstartedeventvideo_some: OpenAuctionStartedEventWhereInput + openauctionstartedeventvideo_every: OpenAuctionStartedEventWhereInput + videoreactedeventvideo_none: VideoReactedEventWhereInput + videoreactedeventvideo_some: VideoReactedEventWhereInput + videoreactedeventvideo_every: VideoReactedEventWhereInput + videoreactionspreferenceeventvideo_none: VideoReactionsPreferenceEventWhereInput + videoreactionspreferenceeventvideo_some: VideoReactionsPreferenceEventWhereInput + videoreactionspreferenceeventvideo_every: VideoReactionsPreferenceEventWhereInput + AND: [VideoWhereInput!] + OR: [VideoWhereInput!] + NOT: [VideoWhereInput!] } -input ProposalVotedEventWhereUniqueInput { +input VideoWhereUniqueInput { id: ID! } -input ProposalVotedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - voter: ID! - voteKind: ProposalVoteKind! - proposal: ID! - rationale: String! - votingRound: Float! +input VideoCreateInput { + entryApp: ID + channel: ID! + category: ID + title: String + description: String + duration: Float + thumbnailPhoto: ID + language: ID + hasMarketing: Boolean + publishedBeforeJoystream: DateTime + isPublic: Boolean + isCensored: Boolean! + nft: ID + isExplicit: Boolean + license: ID + media: ID + videoStateBloatBond: String! + mediaMetadata: ID + createdInBlock: Float! + isCommentSectionEnabled: Boolean! + commentsCount: Float! + isReactionFeatureEnabled: Boolean! + reactionsCount: Float! + ytVideoId: String } -input ProposalVotedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - voter: ID - voteKind: ProposalVoteKind - proposal: ID - rationale: String - votingRound: Float +input VideoUpdateInput { + entryApp: ID + channel: ID + category: ID + title: String + description: String + duration: Float + thumbnailPhoto: ID + language: ID + hasMarketing: Boolean + publishedBeforeJoystream: DateTime + isPublic: Boolean + isCensored: Boolean + nft: ID + isExplicit: Boolean + license: ID + media: ID + videoStateBloatBond: String + mediaMetadata: ID + createdInBlock: Float + isCommentSectionEnabled: Boolean + commentsCount: Float + isReactionFeatureEnabled: Boolean + reactionsCount: Float + ytVideoId: String } -input ProposalCancelledEventWhereInput { +input ChannelPayoutsUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18160,33 +18135,75 @@ input ProposalCancelledEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - proposal: ProposalWhereInput - AND: [ProposalCancelledEventWhereInput!] - OR: [ProposalCancelledEventWhereInput!] - NOT: [ProposalCancelledEventWhereInput!] + commitment_eq: String + commitment_contains: String + commitment_startsWith: String + commitment_endsWith: String + commitment_in: [String!] + payloadSize_eq: BigInt + payloadSize_gt: BigInt + payloadSize_gte: BigInt + payloadSize_lt: BigInt + payloadSize_lte: BigInt + payloadSize_in: [BigInt!] + payloadHash_eq: String + payloadHash_contains: String + payloadHash_startsWith: String + payloadHash_endsWith: String + payloadHash_in: [String!] + minCashoutAllowed_eq: BigInt + minCashoutAllowed_gt: BigInt + minCashoutAllowed_gte: BigInt + minCashoutAllowed_lt: BigInt + minCashoutAllowed_lte: BigInt + minCashoutAllowed_in: [BigInt!] + maxCashoutAllowed_eq: BigInt + maxCashoutAllowed_gt: BigInt + maxCashoutAllowed_gte: BigInt + maxCashoutAllowed_lt: BigInt + maxCashoutAllowed_lte: BigInt + maxCashoutAllowed_in: [BigInt!] + channelCashoutsEnabled_eq: Boolean + channelCashoutsEnabled_in: [Boolean!] + payloadDataObject: StorageDataObjectWhereInput + AND: [ChannelPayoutsUpdatedEventWhereInput!] + OR: [ChannelPayoutsUpdatedEventWhereInput!] + NOT: [ChannelPayoutsUpdatedEventWhereInput!] } -input ProposalCancelledEventWhereUniqueInput { +input ChannelPayoutsUpdatedEventWhereUniqueInput { id: ID! } -input ProposalCancelledEventCreateInput { +input ChannelPayoutsUpdatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - proposal: ID! + commitment: String + payloadDataObject: ID + payloadSize: String + payloadHash: String + minCashoutAllowed: String + maxCashoutAllowed: String + channelCashoutsEnabled: Boolean } -input ProposalCancelledEventUpdateInput { +input ChannelPayoutsUpdatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - proposal: ID + commitment: String + payloadDataObject: ID + payloadSize: String + payloadHash: String + minCashoutAllowed: String + maxCashoutAllowed: String + channelCashoutsEnabled: Boolean } -input ProposalDecisionMadeEventWhereInput { +input StorageDataObjectWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18211,55 +18228,74 @@ input ProposalDecisionMadeEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - decisionStatus_json: JSONObject - proposal: ProposalWhereInput - AND: [ProposalDecisionMadeEventWhereInput!] - OR: [ProposalDecisionMadeEventWhereInput!] - NOT: [ProposalDecisionMadeEventWhereInput!] + isAccepted_eq: Boolean + isAccepted_in: [Boolean!] + size_eq: BigInt + size_gt: BigInt + size_gte: BigInt + size_lt: BigInt + size_lte: BigInt + size_in: [BigInt!] + ipfsHash_eq: String + ipfsHash_contains: String + ipfsHash_startsWith: String + ipfsHash_endsWith: String + ipfsHash_in: [String!] + type_json: JSONObject + stateBloatBond_eq: BigInt + stateBloatBond_gt: BigInt + stateBloatBond_gte: BigInt + stateBloatBond_lt: BigInt + stateBloatBond_lte: BigInt + stateBloatBond_in: [BigInt!] + unsetAt_eq: DateTime + unsetAt_lt: DateTime + unsetAt_lte: DateTime + unsetAt_gt: DateTime + unsetAt_gte: DateTime + storageBag: StorageBagWhereInput + videoThumbnail: VideoWhereInput + videoMedia: VideoWhereInput + videoSubtitle: VideoSubtitleWhereInput + channelcoverPhoto_none: ChannelWhereInput + channelcoverPhoto_some: ChannelWhereInput + channelcoverPhoto_every: ChannelWhereInput + channelavatarPhoto_none: ChannelWhereInput + channelavatarPhoto_some: ChannelWhereInput + channelavatarPhoto_every: ChannelWhereInput + channelpayoutsupdatedeventpayloadDataObject_none: ChannelPayoutsUpdatedEventWhereInput + channelpayoutsupdatedeventpayloadDataObject_some: ChannelPayoutsUpdatedEventWhereInput + channelpayoutsupdatedeventpayloadDataObject_every: ChannelPayoutsUpdatedEventWhereInput + AND: [StorageDataObjectWhereInput!] + OR: [StorageDataObjectWhereInput!] + NOT: [StorageDataObjectWhereInput!] } -input ProposalDecisionMadeEventWhereUniqueInput { +input StorageDataObjectWhereUniqueInput { id: ID! } -input ProposalDecisionMadeEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - proposal: ID! - decisionStatus: JSONObject! +input StorageDataObjectCreateInput { + isAccepted: Boolean! + size: String! + storageBag: ID! + ipfsHash: String! + type: JSONObject! + stateBloatBond: String! + unsetAt: DateTime } -input ProposalDecisionMadeEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - proposal: ID - decisionStatus: JSONObject +input StorageDataObjectUpdateInput { + isAccepted: Boolean + size: String + storageBag: ID + ipfsHash: String + type: JSONObject + stateBloatBond: String + unsetAt: DateTime } -input ProposalExecutedEventWhereInput { +input FundingRequestDestinationWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18284,55 +18320,40 @@ input ProposalExecutedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - executionStatus_json: JSONObject - proposal: ProposalWhereInput - AND: [ProposalExecutedEventWhereInput!] - OR: [ProposalExecutedEventWhereInput!] - NOT: [ProposalExecutedEventWhereInput!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + account_eq: String + account_contains: String + account_startsWith: String + account_endsWith: String + account_in: [String!] + list: FundingRequestDestinationsListWhereInput + AND: [FundingRequestDestinationWhereInput!] + OR: [FundingRequestDestinationWhereInput!] + NOT: [FundingRequestDestinationWhereInput!] } -input ProposalExecutedEventWhereUniqueInput { +input FundingRequestDestinationWhereUniqueInput { id: ID! } -input ProposalExecutedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - proposal: ID! - executionStatus: JSONObject! +input FundingRequestDestinationCreateInput { + amount: String! + account: String! + list: ID! } -input ProposalExecutedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - proposal: ID - executionStatus: JSONObject +input FundingRequestDestinationUpdateInput { + amount: String + account: String + list: ID } -input ProposalWhereInput { +input FundingRequestDestinationsListWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18357,104 +18378,90 @@ input ProposalWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - title_eq: String - title_contains: String - title_startsWith: String - title_endsWith: String - title_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - details_json: JSONObject - stakingAccount_eq: String - stakingAccount_contains: String - stakingAccount_startsWith: String - stakingAccount_endsWith: String - stakingAccount_in: [String!] - exactExecutionBlock_eq: Int - exactExecutionBlock_gt: Int - exactExecutionBlock_gte: Int - exactExecutionBlock_lt: Int - exactExecutionBlock_lte: Int - exactExecutionBlock_in: [Int!] - councilApprovals_eq: Int - councilApprovals_gt: Int - councilApprovals_gte: Int - councilApprovals_lt: Int - councilApprovals_lte: Int - councilApprovals_in: [Int!] - status_json: JSONObject - isFinalized_eq: Boolean - isFinalized_in: [Boolean!] - statusSetAtBlock_eq: Int - statusSetAtBlock_gt: Int - statusSetAtBlock_gte: Int - statusSetAtBlock_lt: Int - statusSetAtBlock_lte: Int - statusSetAtBlock_in: [Int!] - statusSetAtTime_eq: DateTime - statusSetAtTime_lt: DateTime - statusSetAtTime_lte: DateTime - statusSetAtTime_gt: DateTime - statusSetAtTime_gte: DateTime - creator: MembershipWhereInput - createdInEvent: ProposalCreatedEventWhereInput - discussionThread: ProposalDiscussionThreadWhereInput - proposalStatusUpdates_none: ProposalStatusUpdatedEventWhereInput - proposalStatusUpdates_some: ProposalStatusUpdatedEventWhereInput - proposalStatusUpdates_every: ProposalStatusUpdatedEventWhereInput - votes_none: ProposalVotedEventWhereInput - votes_some: ProposalVotedEventWhereInput - votes_every: ProposalVotedEventWhereInput - proposalcancelledeventproposal_none: ProposalCancelledEventWhereInput - proposalcancelledeventproposal_some: ProposalCancelledEventWhereInput - proposalcancelledeventproposal_every: ProposalCancelledEventWhereInput - proposaldecisionmadeeventproposal_none: ProposalDecisionMadeEventWhereInput - proposaldecisionmadeeventproposal_some: ProposalDecisionMadeEventWhereInput - proposaldecisionmadeeventproposal_every: ProposalDecisionMadeEventWhereInput - proposalexecutedeventproposal_none: ProposalExecutedEventWhereInput - proposalexecutedeventproposal_some: ProposalExecutedEventWhereInput - proposalexecutedeventproposal_every: ProposalExecutedEventWhereInput - AND: [ProposalWhereInput!] - OR: [ProposalWhereInput!] - NOT: [ProposalWhereInput!] + phantom_eq: Int + phantom_gt: Int + phantom_gte: Int + phantom_lt: Int + phantom_lte: Int + phantom_in: [Int!] + destinations_none: FundingRequestDestinationWhereInput + destinations_some: FundingRequestDestinationWhereInput + destinations_every: FundingRequestDestinationWhereInput + AND: [FundingRequestDestinationsListWhereInput!] + OR: [FundingRequestDestinationsListWhereInput!] + NOT: [FundingRequestDestinationsListWhereInput!] +} + +input FundingRequestDestinationsListWhereUniqueInput { + id: ID! +} + +input FundingRequestDestinationsListCreateInput { + phantom: Float +} + +input FundingRequestDestinationsListUpdateInput { + phantom: Float +} + +input MembershipExternalResourceWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + type_eq: MembershipExternalResourceType + type_in: [MembershipExternalResourceType!] + value_eq: String + value_contains: String + value_startsWith: String + value_endsWith: String + value_in: [String!] + memberMetadata: MemberMetadataWhereInput + member: MembershipWhereInput + AND: [MembershipExternalResourceWhereInput!] + OR: [MembershipExternalResourceWhereInput!] + NOT: [MembershipExternalResourceWhereInput!] } -input ProposalWhereUniqueInput { +input MembershipExternalResourceWhereUniqueInput { id: ID! } -input ProposalCreateInput { - title: String! - description: String! - details: JSONObject! - stakingAccount: String - creator: ID! - exactExecutionBlock: Float - councilApprovals: Float! - status: JSONObject! - isFinalized: Boolean - statusSetAtBlock: Float! - statusSetAtTime: DateTime! +input MembershipExternalResourceCreateInput { + type: MembershipExternalResourceType! + value: String! + memberMetadata: ID! + member: ID } -input ProposalUpdateInput { - title: String - description: String - details: JSONObject - stakingAccount: String - creator: ID - exactExecutionBlock: Float - councilApprovals: Float - status: JSONObject - isFinalized: Boolean - statusSetAtBlock: Float - statusSetAtTime: DateTime +input MembershipExternalResourceUpdateInput { + type: MembershipExternalResourceType + value: String + memberMetadata: ID + member: ID } -input ProposalDiscussionThreadModeChangedEventWhereInput { +input MemberCreatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18498,39 +18505,61 @@ input ProposalDiscussionThreadModeChangedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newMode_json: JSONObject - thread: ProposalDiscussionThreadWhereInput - actor: MembershipWhereInput - AND: [ProposalDiscussionThreadModeChangedEventWhereInput!] - OR: [ProposalDiscussionThreadModeChangedEventWhereInput!] - NOT: [ProposalDiscussionThreadModeChangedEventWhereInput!] + rootAccount_eq: String + rootAccount_contains: String + rootAccount_startsWith: String + rootAccount_endsWith: String + rootAccount_in: [String!] + controllerAccount_eq: String + controllerAccount_contains: String + controllerAccount_startsWith: String + controllerAccount_endsWith: String + controllerAccount_in: [String!] + handle_eq: String + handle_contains: String + handle_startsWith: String + handle_endsWith: String + handle_in: [String!] + isFoundingMember_eq: Boolean + isFoundingMember_in: [Boolean!] + newMember: MembershipWhereInput + metadata: MemberMetadataWhereInput + AND: [MemberCreatedEventWhereInput!] + OR: [MemberCreatedEventWhereInput!] + NOT: [MemberCreatedEventWhereInput!] } -input ProposalDiscussionThreadModeChangedEventWhereUniqueInput { +input MemberCreatedEventWhereUniqueInput { id: ID! } -input ProposalDiscussionThreadModeChangedEventCreateInput { +input MemberCreatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - thread: ID! - newMode: JSONObject! - actor: ID! + newMember: ID! + rootAccount: String! + controllerAccount: String! + handle: String! + metadata: ID! + isFoundingMember: Boolean! } -input ProposalDiscussionThreadModeChangedEventUpdateInput { +input MemberCreatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - thread: ID - newMode: JSONObject - actor: ID + newMember: ID + rootAccount: String + controllerAccount: String + handle: String + metadata: ID + isFoundingMember: Boolean } -input ProposalDiscussionThreadWhereInput { +input MemberInvitedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18555,34 +18584,87 @@ input ProposalDiscussionThreadWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - mode_json: JSONObject - proposal: ProposalWhereInput - posts_none: ProposalDiscussionPostWhereInput - posts_some: ProposalDiscussionPostWhereInput - posts_every: ProposalDiscussionPostWhereInput - modeChanges_none: ProposalDiscussionThreadModeChangedEventWhereInput - modeChanges_some: ProposalDiscussionThreadModeChangedEventWhereInput - modeChanges_every: ProposalDiscussionThreadModeChangedEventWhereInput - AND: [ProposalDiscussionThreadWhereInput!] - OR: [ProposalDiscussionThreadWhereInput!] - NOT: [ProposalDiscussionThreadWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + rootAccount_eq: String + rootAccount_contains: String + rootAccount_startsWith: String + rootAccount_endsWith: String + rootAccount_in: [String!] + controllerAccount_eq: String + controllerAccount_contains: String + controllerAccount_startsWith: String + controllerAccount_endsWith: String + controllerAccount_in: [String!] + handle_eq: String + handle_contains: String + handle_startsWith: String + handle_endsWith: String + handle_in: [String!] + initialBalance_eq: BigInt + initialBalance_gt: BigInt + initialBalance_gte: BigInt + initialBalance_lt: BigInt + initialBalance_lte: BigInt + initialBalance_in: [BigInt!] + invitingMember: MembershipWhereInput + newMember: MembershipWhereInput + metadata: MemberMetadataWhereInput + AND: [MemberInvitedEventWhereInput!] + OR: [MemberInvitedEventWhereInput!] + NOT: [MemberInvitedEventWhereInput!] } -input ProposalDiscussionThreadWhereUniqueInput { +input MemberInvitedEventWhereUniqueInput { id: ID! } -input ProposalDiscussionThreadCreateInput { - proposal: ID! - mode: JSONObject! +input MemberInvitedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + invitingMember: ID! + newMember: ID! + rootAccount: String! + controllerAccount: String! + handle: String! + metadata: ID! + initialBalance: String! } -input ProposalDiscussionThreadUpdateInput { - proposal: ID - mode: JSONObject +input MemberInvitedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + invitingMember: ID + newMember: ID + rootAccount: String + controllerAccount: String + handle: String + metadata: ID + initialBalance: String } -input ProposalDiscussionPostUpdatedEventWhereInput { +input MemberProfileUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18626,40 +18708,50 @@ input ProposalDiscussionPostUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - text_eq: String - text_contains: String - text_startsWith: String - text_endsWith: String - text_in: [String!] - post: ProposalDiscussionPostWhereInput - AND: [ProposalDiscussionPostUpdatedEventWhereInput!] - OR: [ProposalDiscussionPostUpdatedEventWhereInput!] - NOT: [ProposalDiscussionPostUpdatedEventWhereInput!] + newHandle_eq: String + newHandle_contains: String + newHandle_startsWith: String + newHandle_endsWith: String + newHandle_in: [String!] + newHandleRaw_eq: String + newHandleRaw_contains: String + newHandleRaw_startsWith: String + newHandleRaw_endsWith: String + newHandleRaw_in: [String!] + member: MembershipWhereInput + newMetadata: MemberMetadataWhereInput + AND: [MemberProfileUpdatedEventWhereInput!] + OR: [MemberProfileUpdatedEventWhereInput!] + NOT: [MemberProfileUpdatedEventWhereInput!] } -input ProposalDiscussionPostUpdatedEventWhereUniqueInput { +input MemberProfileUpdatedEventWhereUniqueInput { id: ID! } -input ProposalDiscussionPostUpdatedEventCreateInput { +input MemberProfileUpdatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - post: ID! - text: String! + member: ID! + newHandle: String + newHandleRaw: String + newMetadata: ID! } -input ProposalDiscussionPostUpdatedEventUpdateInput { +input MemberProfileUpdatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - post: ID - text: String + member: ID + newHandle: String + newHandleRaw: String + newMetadata: ID } -input ProposalDiscussionPostCreatedEventWhereInput { +input MembershipBoughtEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18703,40 +18795,60 @@ input ProposalDiscussionPostCreatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - text_eq: String - text_contains: String - text_startsWith: String - text_endsWith: String - text_in: [String!] - post: ProposalDiscussionPostWhereInput - AND: [ProposalDiscussionPostCreatedEventWhereInput!] - OR: [ProposalDiscussionPostCreatedEventWhereInput!] - NOT: [ProposalDiscussionPostCreatedEventWhereInput!] + rootAccount_eq: String + rootAccount_contains: String + rootAccount_startsWith: String + rootAccount_endsWith: String + rootAccount_in: [String!] + controllerAccount_eq: String + controllerAccount_contains: String + controllerAccount_startsWith: String + controllerAccount_endsWith: String + controllerAccount_in: [String!] + handle_eq: String + handle_contains: String + handle_startsWith: String + handle_endsWith: String + handle_in: [String!] + newMember: MembershipWhereInput + metadata: MemberMetadataWhereInput + referrer: MembershipWhereInput + AND: [MembershipBoughtEventWhereInput!] + OR: [MembershipBoughtEventWhereInput!] + NOT: [MembershipBoughtEventWhereInput!] } -input ProposalDiscussionPostCreatedEventWhereUniqueInput { +input MembershipBoughtEventWhereUniqueInput { id: ID! } -input ProposalDiscussionPostCreatedEventCreateInput { +input MembershipBoughtEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - post: ID! - text: String! + newMember: ID! + rootAccount: String! + controllerAccount: String! + handle: String! + metadata: ID! + referrer: ID } -input ProposalDiscussionPostCreatedEventUpdateInput { +input MembershipBoughtEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - post: ID - text: String + newMember: ID + rootAccount: String + controllerAccount: String + handle: String + metadata: ID + referrer: ID } -input ProposalDiscussionPostWhereInput { +input MemberMetadataWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18761,55 +18873,62 @@ input ProposalDiscussionPostWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - status_json: JSONObject - isVisible_eq: Boolean - isVisible_in: [Boolean!] - text_eq: String - text_contains: String - text_startsWith: String - text_endsWith: String - text_in: [String!] - discussionThread: ProposalDiscussionThreadWhereInput - author: MembershipWhereInput - repliesTo: ProposalDiscussionPostWhereInput - updates_none: ProposalDiscussionPostUpdatedEventWhereInput - updates_some: ProposalDiscussionPostUpdatedEventWhereInput - updates_every: ProposalDiscussionPostUpdatedEventWhereInput - createdInEvent: ProposalDiscussionPostCreatedEventWhereInput - proposaldiscussionpostrepliesTo_none: ProposalDiscussionPostWhereInput - proposaldiscussionpostrepliesTo_some: ProposalDiscussionPostWhereInput - proposaldiscussionpostrepliesTo_every: ProposalDiscussionPostWhereInput - proposaldiscussionpostdeletedeventpost_none: ProposalDiscussionPostDeletedEventWhereInput - proposaldiscussionpostdeletedeventpost_some: ProposalDiscussionPostDeletedEventWhereInput - proposaldiscussionpostdeletedeventpost_every: ProposalDiscussionPostDeletedEventWhereInput - AND: [ProposalDiscussionPostWhereInput!] - OR: [ProposalDiscussionPostWhereInput!] - NOT: [ProposalDiscussionPostWhereInput!] + name_eq: String + name_contains: String + name_startsWith: String + name_endsWith: String + name_in: [String!] + avatar_json: JSONObject + about_eq: String + about_contains: String + about_startsWith: String + about_endsWith: String + about_in: [String!] + isVerifiedValidator_eq: Boolean + isVerifiedValidator_in: [Boolean!] + member: MembershipWhereInput + externalResources_none: MembershipExternalResourceWhereInput + externalResources_some: MembershipExternalResourceWhereInput + externalResources_every: MembershipExternalResourceWhereInput + membercreatedeventmetadata_none: MemberCreatedEventWhereInput + membercreatedeventmetadata_some: MemberCreatedEventWhereInput + membercreatedeventmetadata_every: MemberCreatedEventWhereInput + memberinvitedeventmetadata_none: MemberInvitedEventWhereInput + memberinvitedeventmetadata_some: MemberInvitedEventWhereInput + memberinvitedeventmetadata_every: MemberInvitedEventWhereInput + memberprofileupdatedeventnewMetadata_none: MemberProfileUpdatedEventWhereInput + memberprofileupdatedeventnewMetadata_some: MemberProfileUpdatedEventWhereInput + memberprofileupdatedeventnewMetadata_every: MemberProfileUpdatedEventWhereInput + membershipboughteventmetadata_none: MembershipBoughtEventWhereInput + membershipboughteventmetadata_some: MembershipBoughtEventWhereInput + membershipboughteventmetadata_every: MembershipBoughtEventWhereInput + membershipgiftedeventmetadata_none: MembershipGiftedEventWhereInput + membershipgiftedeventmetadata_some: MembershipGiftedEventWhereInput + membershipgiftedeventmetadata_every: MembershipGiftedEventWhereInput + AND: [MemberMetadataWhereInput!] + OR: [MemberMetadataWhereInput!] + NOT: [MemberMetadataWhereInput!] } -input ProposalDiscussionPostWhereUniqueInput { +input MemberMetadataWhereUniqueInput { id: ID! } -input ProposalDiscussionPostCreateInput { - discussionThread: ID! - author: ID! - status: JSONObject! - isVisible: Boolean! - text: String! - repliesTo: ID +input MemberMetadataCreateInput { + name: String + avatar: JSONObject! + about: String + isVerifiedValidator: Boolean } -input ProposalDiscussionPostUpdateInput { - discussionThread: ID - author: ID - status: JSONObject - isVisible: Boolean - text: String - repliesTo: ID +input MemberMetadataUpdateInput { + name: String + avatar: JSONObject + about: String + isVerifiedValidator: Boolean } -input ProposalDiscussionPostDeletedEventWhereInput { +input MembershipGiftedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18853,33 +18972,54 @@ input ProposalDiscussionPostDeletedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - post: ProposalDiscussionPostWhereInput - actor: MembershipWhereInput - AND: [ProposalDiscussionPostDeletedEventWhereInput!] - OR: [ProposalDiscussionPostDeletedEventWhereInput!] - NOT: [ProposalDiscussionPostDeletedEventWhereInput!] + rootAccount_eq: String + rootAccount_contains: String + rootAccount_startsWith: String + rootAccount_endsWith: String + rootAccount_in: [String!] + controllerAccount_eq: String + controllerAccount_contains: String + controllerAccount_startsWith: String + controllerAccount_endsWith: String + controllerAccount_in: [String!] + handle_eq: String + handle_contains: String + handle_startsWith: String + handle_endsWith: String + handle_in: [String!] + newMember: MembershipWhereInput + metadata: MemberMetadataWhereInput + AND: [MembershipGiftedEventWhereInput!] + OR: [MembershipGiftedEventWhereInput!] + NOT: [MembershipGiftedEventWhereInput!] } -input ProposalDiscussionPostDeletedEventWhereUniqueInput { +input MembershipGiftedEventWhereUniqueInput { id: ID! } -input ProposalDiscussionPostDeletedEventCreateInput { +input MembershipGiftedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - post: ID! - actor: ID! + newMember: ID! + rootAccount: String! + controllerAccount: String! + handle: String! + metadata: ID! } -input ProposalDiscussionPostDeletedEventUpdateInput { +input MembershipGiftedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - post: ID - actor: ID + newMember: ID + rootAccount: String + controllerAccount: String + handle: String + metadata: ID } input ProposalDiscussionWhitelistWhereInput { @@ -23018,6 +23158,53 @@ input StakeReleasedEventUpdateInput { stakingAccount: String } +input TagPermittedWorkerWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + workerId_eq: String + workerId_contains: String + workerId_startsWith: String + workerId_endsWith: String + workerId_in: [String!] + AND: [TagPermittedWorkerWhereInput!] + OR: [TagPermittedWorkerWhereInput!] + NOT: [TagPermittedWorkerWhereInput!] +} + +input TagPermittedWorkerWhereUniqueInput { + id: ID! +} + +input TagPermittedWorkerCreateInput { + workerId: String! +} + +input TagPermittedWorkerUpdateInput { + workerId: String +} + input VideoAssetsDeletedByModeratorEventWhereInput { id_eq: ID id_in: [ID!] @@ -23925,7 +24112,7 @@ type ThreadMovedEvent implements Event & BaseGraphQLObject { actorId: String! } -type BountyFundedEvent implements Event & BaseGraphQLObject { +type ProposalCreatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -23949,11 +24136,11 @@ type BountyFundedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - contribution: BountyContribution! - contributionId: String! + proposal: Proposal! + proposalId: String! } -type BountyFundingWithdrawalEvent implements Event & BaseGraphQLObject { +type ProposalDiscussionPostUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -23977,11 +24164,14 @@ type BountyFundingWithdrawalEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - contribution: BountyContribution! - contributionId: String! + post: ProposalDiscussionPost! + postId: String! + + """New post text""" + text: String! } -type WorkEntryAnnouncedEvent implements Event & BaseGraphQLObject { +type ProposalDiscussionPostCreatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24005,11 +24195,14 @@ type WorkEntryAnnouncedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - entry: BountyEntry! - entryId: String! + post: ProposalDiscussionPost! + postId: String! + + """Initial post text""" + text: String! } -type WorkEntryWithdrawnEvent implements Event & BaseGraphQLObject { +type ProposalDiscussionPostDeletedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24033,11 +24226,13 @@ type WorkEntryWithdrawnEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - entry: BountyEntry! - entryId: String! + post: ProposalDiscussionPost! + postId: String! + actor: Membership! + actorId: String! } -type WorkEntrySlashedEvent implements Event & BaseGraphQLObject { +type ProposalDiscussionThreadModeChangedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24061,11 +24256,16 @@ type WorkEntrySlashedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - entry: BountyEntry! - entryId: String! + thread: ProposalDiscussionThread! + threadId: String! + + """The new thread mode""" + newMode: ProposalDiscussionThreadMode! + actor: Membership! + actorId: String! } -type WorkSubmittedEvent implements Event & BaseGraphQLObject { +type ProposalStatusUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24089,21 +24289,14 @@ type WorkSubmittedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - bounty: Bounty! - bountyId: String! - entry: BountyEntry! - entryId: String! - - """Title of the work""" - title: String + proposal: Proposal! + proposalId: String! - """ - Description which contains the work itself as a URL, a BLOB, or just text - """ - description: String + """The new proposal intermediate status (Deciding/Gracing/Dormant)""" + newStatus: ProposalIntermediateStatus! } -type WorkEntrantFundsWithdrawnEvent implements Event & BaseGraphQLObject { +type ProposalVotedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24127,11 +24320,24 @@ type WorkEntrantFundsWithdrawnEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - entry: BountyEntry! - entryId: String! + voter: Membership! + voterId: String! + + """The kind of the vote that was casted""" + voteKind: ProposalVoteKind! + proposal: Proposal! + proposalId: String! + + """The rationale behind the vote""" + rationale: String! + + """ + The voting round - number representing which Deciding period the vote was casted in (starting with 1), useful when the proposal must be approved during multiple council terms (constitution > 1) + """ + votingRound: Int! } -type BountyCreatedEvent implements Event & BaseGraphQLObject { +type ProposalCancelledEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24155,11 +24361,11 @@ type BountyCreatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - bounty: Bounty! - bountyId: String! + proposal: Proposal! + proposalId: String! } -type BountyCanceledEvent implements Event & BaseGraphQLObject { +type ProposalDecisionMadeEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24183,11 +24389,14 @@ type BountyCanceledEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - bounty: Bounty! - bountyId: String! + proposal: Proposal! + proposalId: String! + + """The voting decision status""" + decisionStatus: ProposalDecisionStatus! } -type BountyVetoedEvent implements Event & BaseGraphQLObject { +type ProposalExecutedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24211,11 +24420,14 @@ type BountyVetoedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - bounty: Bounty! - bountyId: String! + proposal: Proposal! + proposalId: String! + + """The execution status""" + executionStatus: ProposalExecutionStatus! } -type BountyMaxFundingReachedEvent implements Event & BaseGraphQLObject { +type BountyFundedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24239,11 +24451,11 @@ type BountyMaxFundingReachedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - bounty: Bounty! - bountyId: String! + contribution: BountyContribution! + contributionId: String! } -type BountyRemovedEvent implements Event & BaseGraphQLObject { +type BountyFundingWithdrawalEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24267,11 +24479,11 @@ type BountyRemovedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - bounty: Bounty! - bountyId: String! + contribution: BountyContribution! + contributionId: String! } -type OracleJudgmentSubmittedEvent implements Event & BaseGraphQLObject { +type WorkEntryAnnouncedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24295,14 +24507,11 @@ type OracleJudgmentSubmittedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - bounty: Bounty! - bountyId: String! - - """Rationale of the judgment""" - rationale: String + entry: BountyEntry! + entryId: String! } -type BountyCreatorCherryWithdrawalEvent implements Event & BaseGraphQLObject { +type WorkEntryWithdrawnEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24326,11 +24535,11 @@ type BountyCreatorCherryWithdrawalEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - bounty: Bounty! - bountyId: String! + entry: BountyEntry! + entryId: String! } -type ThreadDeletedEvent implements Event & BaseGraphQLObject { +type WorkEntrySlashedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24354,11 +24563,11 @@ type ThreadDeletedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - thread: ForumThread! - threadId: String! + entry: BountyEntry! + entryId: String! } -type ThreadModeratedEvent implements Event & BaseGraphQLObject { +type WorkSubmittedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24382,16 +24591,21 @@ type ThreadModeratedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - thread: ForumThread! - threadId: String! + bounty: Bounty! + bountyId: String! + entry: BountyEntry! + entryId: String! - """Rationale behind the moderation""" - rationale: String! - actor: Worker! - actorId: String! + """Title of the work""" + title: String + + """ + Description which contains the work itself as a URL, a BLOB, or just text + """ + description: String } -type CategoryCreatedEvent implements Event & BaseGraphQLObject { +type WorkEntrantFundsWithdrawnEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24415,11 +24629,11 @@ type CategoryCreatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - category: ForumCategory! - categoryId: String! + entry: BountyEntry! + entryId: String! } -type CategoryArchivalStatusUpdatedEvent implements Event & BaseGraphQLObject { +type BountyCreatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24443,16 +24657,11 @@ type CategoryArchivalStatusUpdatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - category: ForumCategory! - categoryId: String! - - """The new archival status of the category (true = archived)""" - newArchivalStatus: Boolean! - actor: Worker! - actorId: String! + bounty: Bounty! + bountyId: String! } -type CategoryDeletedEvent implements Event & BaseGraphQLObject { +type BountyCanceledEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24476,13 +24685,11 @@ type CategoryDeletedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - category: ForumCategory! - categoryId: String! - actor: Worker! - actorId: String! + bounty: Bounty! + bountyId: String! } -type CategoryMembershipOfModeratorUpdatedEvent implements Event & BaseGraphQLObject { +type BountyVetoedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24506,18 +24713,11 @@ type CategoryMembershipOfModeratorUpdatedEvent implements Event & BaseGraphQLObj """Filtering options for interface implementers""" type: EventTypeOptions - moderator: Worker! - moderatorId: String! - category: ForumCategory! - categoryId: String! - - """ - The flag indicating whether the permissions to moderate the category are granted or revoked - """ - newCanModerateValue: Boolean! + bounty: Bounty! + bountyId: String! } -type LeaderSetEvent implements Event & BaseGraphQLObject { +type BountyMaxFundingReachedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24541,13 +24741,11 @@ type LeaderSetEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! - worker: Worker - workerId: String + bounty: Bounty! + bountyId: String! } -type LeaderUnsetEvent implements Event & BaseGraphQLObject { +type BountyRemovedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24571,13 +24769,11 @@ type LeaderUnsetEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! - leader: Worker! - leaderId: String! + bounty: Bounty! + bountyId: String! } -type MemberVerificationStatusUpdatedEvent implements Event & BaseGraphQLObject { +type OracleJudgmentSubmittedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24601,16 +24797,14 @@ type MemberVerificationStatusUpdatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - member: Membership! - memberId: String! - worker: Worker! - workerId: String! + bounty: Bounty! + bountyId: String! - """New status.""" - isVerified: Boolean! + """Rationale of the judgment""" + rationale: String } -type NewMissedRewardLevelReachedEvent implements Event & BaseGraphQLObject { +type BountyCreatorCherryWithdrawalEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24634,16 +24828,11 @@ type NewMissedRewardLevelReachedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! - worker: Worker! - workerId: String! - - """New missed reward amount""" - newMissedRewardAmount: BigInt! + bounty: Bounty! + bountyId: String! } -type StakeDecreasedEvent implements Event & BaseGraphQLObject { +type ThreadDeletedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24667,16 +24856,11 @@ type StakeDecreasedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! - worker: Worker! - workerId: String! - - """The amount of JOY the stake was decreased by""" - amount: BigInt! + thread: ForumThread! + threadId: String! } -type StakeIncreasedEvent implements Event & BaseGraphQLObject { +type ThreadModeratedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24700,16 +24884,16 @@ type StakeIncreasedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! - worker: Worker! - workerId: String! + thread: ForumThread! + threadId: String! - """The amount of JOY the stake was increased by""" - amount: BigInt! + """Rationale behind the moderation""" + rationale: String! + actor: Worker! + actorId: String! } -type TerminatedLeaderEvent implements Event & BaseGraphQLObject { +type CategoryCreatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24733,19 +24917,11 @@ type TerminatedLeaderEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! - worker: Worker! - workerId: String! - - """Slash amount (if any)""" - penalty: BigInt - - """Optional rationale""" - rationale: String + category: ForumCategory! + categoryId: String! } -type TerminatedWorkerEvent implements Event & BaseGraphQLObject { +type CategoryArchivalStatusUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24764,24 +24940,21 @@ type TerminatedWorkerEvent implements Event & BaseGraphQLObject { """Network the block was produced in""" network: Network! - """Index of event in block from which it was emitted.""" - indexInBlock: Int! - - """Filtering options for interface implementers""" - type: EventTypeOptions - group: WorkingGroup! - groupId: String! - worker: Worker! - workerId: String! + """Index of event in block from which it was emitted.""" + indexInBlock: Int! - """Slash amount (if any)""" - penalty: BigInt + """Filtering options for interface implementers""" + type: EventTypeOptions + category: ForumCategory! + categoryId: String! - """Optional rationale""" - rationale: String + """The new archival status of the category (true = archived)""" + newArchivalStatus: Boolean! + actor: Worker! + actorId: String! } -type WorkerExitedEvent implements Event & BaseGraphQLObject { +type CategoryDeletedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24805,13 +24978,13 @@ type WorkerExitedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! - worker: Worker! - workerId: String! + category: ForumCategory! + categoryId: String! + actor: Worker! + actorId: String! } -type WorkerRewardAccountUpdatedEvent implements Event & BaseGraphQLObject { +type CategoryMembershipOfModeratorUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24835,16 +25008,18 @@ type WorkerRewardAccountUpdatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! - worker: Worker! - workerId: String! + moderator: Worker! + moderatorId: String! + category: ForumCategory! + categoryId: String! - """New reward account""" - newRewardAccount: String! + """ + The flag indicating whether the permissions to moderate the category are granted or revoked + """ + newCanModerateValue: Boolean! } -type WorkerRewardAmountUpdatedEvent implements Event & BaseGraphQLObject { +type LeaderSetEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24870,14 +25045,11 @@ type WorkerRewardAmountUpdatedEvent implements Event & BaseGraphQLObject { type: EventTypeOptions group: WorkingGroup! groupId: String! - worker: Worker! - workerId: String! - - """New worker reward per block""" - newRewardPerBlock: BigInt! + worker: Worker + workerId: String } -type WorkerRoleAccountUpdatedEvent implements Event & BaseGraphQLObject { +type LeaderUnsetEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24903,14 +25075,11 @@ type WorkerRoleAccountUpdatedEvent implements Event & BaseGraphQLObject { type: EventTypeOptions group: WorkingGroup! groupId: String! - worker: Worker! - workerId: String! - - """New role account""" - newRoleAccount: String! + leader: Worker! + leaderId: String! } -type WorkerStartedLeavingEvent implements Event & BaseGraphQLObject { +type MemberVerificationStatusUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24934,16 +25103,16 @@ type WorkerStartedLeavingEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! + member: Membership! + memberId: String! worker: Worker! workerId: String! - """Optional rationale""" - rationale: String + """New status.""" + isVerified: Boolean! } -type StatusTextChangedEvent implements Event & BaseGraphQLObject { +type NewMissedRewardLevelReachedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24969,17 +25138,14 @@ type StatusTextChangedEvent implements Event & BaseGraphQLObject { type: EventTypeOptions group: WorkingGroup! groupId: String! + worker: Worker! + workerId: String! - """Original action metadata as hex string""" - metadata: String - - """Event result depeding on the metadata action type""" - result: WorkingGroupMetadataActionResult! - upcomingworkinggroupopeningcreatedInEvent: [UpcomingWorkingGroupOpening!] - workinggroupmetadatasetInEvent: [WorkingGroupMetadata!] + """New missed reward amount""" + newMissedRewardAmount: BigInt! } -type BudgetFundedEvent implements Event & BaseGraphQLObject { +type StakeDecreasedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25005,17 +25171,14 @@ type BudgetFundedEvent implements Event & BaseGraphQLObject { type: EventTypeOptions group: WorkingGroup! groupId: String! - member: Membership! - memberId: String! - - """Rationale provided by the member""" - rationale: String! + worker: Worker! + workerId: String! - """Amount added to the current budget""" + """The amount of JOY the stake was decreased by""" amount: BigInt! } -type BudgetSetEvent implements Event & BaseGraphQLObject { +type StakeIncreasedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25041,12 +25204,14 @@ type BudgetSetEvent implements Event & BaseGraphQLObject { type: EventTypeOptions group: WorkingGroup! groupId: String! + worker: Worker! + workerId: String! - """New working group budget""" - newBudget: BigInt! + """The amount of JOY the stake was increased by""" + amount: BigInt! } -type BudgetSpendingEvent implements Event & BaseGraphQLObject { +type TerminatedLeaderEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25072,18 +25237,17 @@ type BudgetSpendingEvent implements Event & BaseGraphQLObject { type: EventTypeOptions group: WorkingGroup! groupId: String! + worker: Worker! + workerId: String! - """Reciever account address""" - reciever: String! - - """Amount beeing spent""" - amount: BigInt! + """Slash amount (if any)""" + penalty: BigInt """Optional rationale""" rationale: String } -type BudgetUpdatedEvent implements Event & BaseGraphQLObject { +type TerminatedWorkerEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25109,12 +25273,17 @@ type BudgetUpdatedEvent implements Event & BaseGraphQLObject { type: EventTypeOptions group: WorkingGroup! groupId: String! + worker: Worker! + workerId: String! - """Amount substracted from / added to the current budget""" - budgetChangeAmount: BigInt! + """Slash amount (if any)""" + penalty: BigInt + + """Optional rationale""" + rationale: String } -type OpeningFilledEvent implements Event & BaseGraphQLObject { +type WorkerExitedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25140,12 +25309,11 @@ type OpeningFilledEvent implements Event & BaseGraphQLObject { type: EventTypeOptions group: WorkingGroup! groupId: String! - opening: WorkingGroupOpening! - openingId: String! - workersHired: [Worker!]! + worker: Worker! + workerId: String! } -type AuctionBidCanceledEvent implements Event & BaseGraphQLObject { +type WorkerRewardAccountUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25155,13 +25323,13 @@ type AuctionBidCanceledEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25169,17 +25337,16 @@ type AuctionBidCanceledEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - member: Membership! - memberId: String! - video: Video! - videoId: String! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String + group: WorkingGroup! + groupId: String! + worker: Worker! + workerId: String! + + """New reward account""" + newRewardAccount: String! } -type NftIssuedEvent implements Event & BaseGraphQLObject { +type WorkerRewardAmountUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25189,13 +25356,13 @@ type NftIssuedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25203,26 +25370,16 @@ type NftIssuedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + group: WorkingGroup! + groupId: String! + worker: Worker! + workerId: String! - """Content actor that issued the NFT.""" - contentActor: ContentActor! - video: Video! - videoId: String! - videoCategory: VideoCategory - videoCategoryId: String - - """Royalty for the NFT/video.""" - royalty: Float - - """NFT's metadata.""" - metadata: String! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String + """New worker reward per block""" + newRewardPerBlock: BigInt! } -type EnglishAuctionStartedEvent implements Event & BaseGraphQLObject { +type WorkerRoleAccountUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25232,13 +25389,13 @@ type EnglishAuctionStartedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25246,20 +25403,16 @@ type EnglishAuctionStartedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + group: WorkingGroup! + groupId: String! + worker: Worker! + workerId: String! - """Actor that started this auction.""" - actor: ContentActor! - video: Video! - videoId: String! - auction: Auction! - auctionId: String! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String + """New role account""" + newRoleAccount: String! } -type OpenAuctionStartedEvent implements Event & BaseGraphQLObject { +type WorkerStartedLeavingEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25269,13 +25422,13 @@ type OpenAuctionStartedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25283,20 +25436,16 @@ type OpenAuctionStartedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + group: WorkingGroup! + groupId: String! + worker: Worker! + workerId: String! - """Actor that started this auction.""" - actor: ContentActor! - video: Video! - videoId: String! - auction: Auction! - auctionId: String! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String + """Optional rationale""" + rationale: String } -type BidMadeCompletingAuctionEvent implements Event & BaseGraphQLObject { +type StatusTextChangedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25306,13 +25455,13 @@ type BidMadeCompletingAuctionEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25320,27 +25469,19 @@ type BidMadeCompletingAuctionEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - member: Membership! - memberId: String! - video: Video! - videoId: String! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String + group: WorkingGroup! + groupId: String! - """Price for which the NFT was bought""" - price: BigInt! - winningBid: Bid! - winningBidId: String! - previousTopBid: Bid - previousTopBidId: String - previousTopBidder: Membership - previousTopBidderId: String - bidders: [Membership!]! + """Original action metadata as hex string""" + metadata: String + + """Event result depeding on the metadata action type""" + result: WorkingGroupMetadataActionResult! + upcomingworkinggroupopeningcreatedInEvent: [UpcomingWorkingGroupOpening!] + workinggroupmetadatasetInEvent: [WorkingGroupMetadata!] } -type EnglishAuctionSettledEvent implements Event & BaseGraphQLObject { +type BudgetFundedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25350,13 +25491,13 @@ type EnglishAuctionSettledEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25364,20 +25505,19 @@ type EnglishAuctionSettledEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - winner: Membership! - winnerId: String! - winningBid: Bid! - winningBidId: String! - video: Video! - videoId: String! - bidders: [Membership!]! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String + group: WorkingGroup! + groupId: String! + member: Membership! + memberId: String! + + """Rationale provided by the member""" + rationale: String! + + """Amount added to the current budget""" + amount: BigInt! } -type OpenAuctionBidAcceptedEvent implements Event & BaseGraphQLObject { +type BudgetSetEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25387,13 +25527,13 @@ type OpenAuctionBidAcceptedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25401,23 +25541,14 @@ type OpenAuctionBidAcceptedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + group: WorkingGroup! + groupId: String! - """Content actor that accepted the bid.""" - contentActor: ContentActor! - video: Video! - videoId: String! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String - winningBid: Bid - winningBidId: String - winningBidder: Membership - winningBidderId: String - bidders: [Membership!]! + """New working group budget""" + newBudget: BigInt! } -type AuctionBidMadeEvent implements Event & BaseGraphQLObject { +type BudgetSpendingEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25427,13 +25558,13 @@ type AuctionBidMadeEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25441,24 +25572,20 @@ type AuctionBidMadeEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - member: Membership! - memberId: String! - video: Video! - videoId: String! + group: WorkingGroup! + groupId: String! - """Bid made.""" - bidAmount: BigInt! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String - previousTopBid: Bid - previousTopBidId: String - previousTopBidder: Membership - previousTopBidderId: String + """Reciever account address""" + reciever: String! + + """Amount beeing spent""" + amount: BigInt! + + """Optional rationale""" + rationale: String } -type AuctionCanceledEvent implements Event & BaseGraphQLObject { +type BudgetUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25468,13 +25595,13 @@ type AuctionCanceledEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25482,18 +25609,14 @@ type AuctionCanceledEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + group: WorkingGroup! + groupId: String! - """Content actor canceling the event.""" - contentActor: ContentActor! - video: Video! - videoId: String! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String + """Amount substracted from / added to the current budget""" + budgetChangeAmount: BigInt! } -type BuyNowCanceledEvent implements Event & BaseGraphQLObject { +type OpeningFilledEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25503,13 +25626,13 @@ type BuyNowCanceledEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25517,18 +25640,14 @@ type BuyNowCanceledEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - video: Video! - videoId: String! - - """Content actor acting as NFT owner.""" - contentActor: ContentActor! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String + group: WorkingGroup! + groupId: String! + opening: WorkingGroupOpening! + openingId: String! + workersHired: [Worker!]! } -type BuyNowPriceUpdatedEvent implements Event & BaseGraphQLObject { +type AuctionBidCanceledEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25552,21 +25671,17 @@ type BuyNowPriceUpdatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + member: Membership! + memberId: String! video: Video! videoId: String! - - """Content actor acting as NFT owner.""" - contentActor: ContentActor! - - """New buy-now price.""" - newPrice: BigInt! ownerMember: Membership ownerMemberId: String ownerCuratorGroup: CuratorGroup ownerCuratorGroupId: String } -type NftBoughtEvent implements Event & BaseGraphQLObject { +type NftIssuedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25590,20 +25705,26 @@ type NftBoughtEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + + """Content actor that issued the NFT.""" + contentActor: ContentActor! video: Video! videoId: String! - member: Membership! - memberId: String! + videoCategory: VideoCategory + videoCategoryId: String + + """Royalty for the NFT/video.""" + royalty: Float + + """NFT's metadata.""" + metadata: String! ownerMember: Membership ownerMemberId: String ownerCuratorGroup: CuratorGroup ownerCuratorGroupId: String - - """Price for which NFT was bought""" - price: BigInt! } -type NftSlingedBackToTheOriginalArtistEvent implements Event & BaseGraphQLObject { +type EnglishAuctionStartedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25627,18 +25748,20 @@ type NftSlingedBackToTheOriginalArtistEvent implements Event & BaseGraphQLObject """Filtering options for interface implementers""" type: EventTypeOptions + + """Actor that started this auction.""" + actor: ContentActor! video: Video! videoId: String! - - """Content actor who slung back the NFT.""" - contentActor: ContentActor! + auction: Auction! + auctionId: String! ownerMember: Membership ownerMemberId: String ownerCuratorGroup: CuratorGroup ownerCuratorGroupId: String } -type OfferAcceptedEvent implements Event & BaseGraphQLObject { +type OpenAuctionStartedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25662,18 +25785,20 @@ type OfferAcceptedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + + """Actor that started this auction.""" + actor: ContentActor! video: Video! videoId: String! + auction: Auction! + auctionId: String! ownerMember: Membership ownerMemberId: String ownerCuratorGroup: CuratorGroup ownerCuratorGroupId: String - - """Price for which the NFT was bought""" - price: BigInt } -type OfferCanceledEvent implements Event & BaseGraphQLObject { +type BidMadeCompletingAuctionEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25697,18 +25822,27 @@ type OfferCanceledEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + member: Membership! + memberId: String! video: Video! videoId: String! - - """Content actor acting as NFT owner.""" - contentActor: ContentActor! ownerMember: Membership ownerMemberId: String ownerCuratorGroup: CuratorGroup ownerCuratorGroupId: String + + """Price for which the NFT was bought""" + price: BigInt! + winningBid: Bid! + winningBidId: String! + previousTopBid: Bid + previousTopBidId: String + previousTopBidder: Membership + previousTopBidderId: String + bidders: [Membership!]! } -type OfferStartedEvent implements Event & BaseGraphQLObject { +type EnglishAuctionSettledEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25732,23 +25866,20 @@ type OfferStartedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + winner: Membership! + winnerId: String! + winningBid: Bid! + winningBidId: String! video: Video! videoId: String! - - """Content actor acting as NFT owner.""" - contentActor: ContentActor! - member: Membership! - memberId: String! - - """Offer's price.""" - price: BigInt + bidders: [Membership!]! ownerMember: Membership ownerMemberId: String ownerCuratorGroup: CuratorGroup ownerCuratorGroupId: String } -type ChannelRewardClaimedEvent implements Event & BaseGraphQLObject { +type OpenAuctionBidAcceptedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25772,14 +25903,23 @@ type ChannelRewardClaimedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - channel: Channel! - channelId: String! - """Reward amount claimed""" - amount: BigInt! + """Content actor that accepted the bid.""" + contentActor: ContentActor! + video: Video! + videoId: String! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String + winningBid: Bid + winningBidId: String + winningBidder: Membership + winningBidderId: String + bidders: [Membership!]! } -type ChannelFundsWithdrawnEvent implements Event & BaseGraphQLObject { +type AuctionBidMadeEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25803,20 +25943,24 @@ type ChannelFundsWithdrawnEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - channel: Channel! - channelId: String! - - """Reward amount claimed""" - amount: BigInt! - - """Destination account ID. Null in case the funds destination was Council""" - account: String + member: Membership! + memberId: String! + video: Video! + videoId: String! - """Content actor""" - actor: ContentActor! + """Bid made.""" + bidAmount: BigInt! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String + previousTopBid: Bid + previousTopBidId: String + previousTopBidder: Membership + previousTopBidderId: String } -type ChannelRewardClaimedAndWithdrawnEvent implements Event & BaseGraphQLObject { +type AuctionCanceledEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25840,20 +25984,18 @@ type ChannelRewardClaimedAndWithdrawnEvent implements Event & BaseGraphQLObject """Filtering options for interface implementers""" type: EventTypeOptions - channel: Channel! - channelId: String! - - """Reward amount claimed""" - amount: BigInt! - """Destination account ID. Null in case the funds destination was Council""" - account: String - - """Content actor""" - actor: ContentActor! + """Content actor canceling the event.""" + contentActor: ContentActor! + video: Video! + videoId: String! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String } -type CommentTextUpdatedEvent implements Event & BaseGraphQLObject { +type BuyNowCanceledEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25863,13 +26005,13 @@ type CommentTextUpdatedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -25877,18 +26019,18 @@ type CommentTextUpdatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - comment: Comment! - commentId: String! video: Video! videoId: String! - videoChannel: Channel! - videoChannelId: String! - """New comment text""" - newText: String! + """Content actor acting as NFT owner.""" + contentActor: ContentActor! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String } -type CommentDeletedEvent implements Event & BaseGraphQLObject { +type BuyNowPriceUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25898,13 +26040,13 @@ type CommentDeletedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -25912,15 +26054,21 @@ type CommentDeletedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - comment: Comment! - commentId: String! video: Video! videoId: String! - videoChannel: Channel! - videoChannelId: String! + + """Content actor acting as NFT owner.""" + contentActor: ContentActor! + + """New buy-now price.""" + newPrice: BigInt! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String } -type CommentModeratedEvent implements Event & BaseGraphQLObject { +type NftBoughtEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25930,13 +26078,13 @@ type CommentModeratedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -25944,21 +26092,20 @@ type CommentModeratedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - comment: Comment! - commentId: String! video: Video! videoId: String! - videoChannel: Channel! - videoChannelId: String! - - """The actor responsible for the removal of comment""" - actor: ContentActor! + member: Membership! + memberId: String! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String - """Comment deletion rationale""" - rationale: String! + """Price for which NFT was bought""" + price: BigInt! } -type CommentPinnedEvent implements Event & BaseGraphQLObject { +type NftSlingedBackToTheOriginalArtistEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25968,13 +26115,13 @@ type CommentPinnedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -25982,18 +26129,18 @@ type CommentPinnedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - comment: Comment! - commentId: String! video: Video! videoId: String! - videoChannel: Channel! - videoChannelId: String! - """The action performed. true if comment is pinned, otherwise false.""" - action: Boolean! + """Content actor who slung back the NFT.""" + contentActor: ContentActor! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String } -type CommentReactedEvent implements Event & BaseGraphQLObject { +type OfferAcceptedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26003,13 +26150,13 @@ type CommentReactedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -26017,20 +26164,18 @@ type CommentReactedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - comment: Comment! - commentId: String! video: Video! videoId: String! - videoChannel: Channel! - videoChannelId: String! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String - """The reaction id""" - reactionResult: Int! - reactingMember: Membership! - reactingMemberId: String! + """Price for which the NFT was bought""" + price: BigInt } -type CommentCreatedEvent implements Event & BaseGraphQLObject { +type OfferCanceledEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26040,13 +26185,13 @@ type CommentCreatedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -26054,20 +26199,18 @@ type CommentCreatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - comment: Comment! - commentId: String! - parentCommentAuthor: Membership - parentCommentAuthorId: String video: Video! videoId: String! - videoChannel: Channel! - videoChannelId: String! - """Comment's original text""" - text: String! + """Content actor acting as NFT owner.""" + contentActor: ContentActor! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String } -type MemberBannedFromChannelEvent implements Event & BaseGraphQLObject { +type OfferStartedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26077,13 +26220,13 @@ type MemberBannedFromChannelEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -26091,18 +26234,23 @@ type MemberBannedFromChannelEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - channel: Channel! - channelId: String! + video: Video! + videoId: String! + + """Content actor acting as NFT owner.""" + contentActor: ContentActor! member: Membership! memberId: String! - """ - The action performed. true if member is banned, false if member is unbanned - """ - action: Boolean! + """Offer's price.""" + price: BigInt + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String } -type VideoReactedEvent implements Event & BaseGraphQLObject { +type ChannelRewardClaimedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26112,13 +26260,13 @@ type VideoReactedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -26126,18 +26274,14 @@ type VideoReactedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - video: Video! - videoId: String! - videoChannel: Channel! - videoChannelId: String! + channel: Channel! + channelId: String! - """The reaction result""" - reactionResult: VideoReactionOptions! - reactingMember: Membership! - reactingMemberId: String! + """Reward amount claimed""" + amount: BigInt! } -type VideoReactionsPreferenceEvent implements Event & BaseGraphQLObject { +type ChannelFundsWithdrawnEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26147,13 +26291,13 @@ type VideoReactionsPreferenceEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -26161,14 +26305,20 @@ type VideoReactionsPreferenceEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - video: Video! - videoId: String! + channel: Channel! + channelId: String! - """Is comment section enabled (true if enabled)""" - reactionsStatus: Boolean! + """Reward amount claimed""" + amount: BigInt! + + """Destination account ID. Null in case the funds destination was Council""" + account: String + + """Content actor""" + actor: ContentActor! } -type MemberCreatedEvent implements Event & BaseGraphQLObject { +type ChannelRewardClaimedAndWithdrawnEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26178,13 +26328,13 @@ type MemberCreatedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -26192,25 +26342,20 @@ type MemberCreatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - newMember: Membership! - newMemberId: String! - - """New member root account in SS58 encoding.""" - rootAccount: String! + channel: Channel! + channelId: String! - """New member controller in SS58 encoding.""" - controllerAccount: String! + """Reward amount claimed""" + amount: BigInt! - """New member handle.""" - handle: String! - metadata: MemberMetadata! - metadataId: String! + """Destination account ID. Null in case the funds destination was Council""" + account: String - """Whether member is founding member.""" - isFoundingMember: Boolean! + """Content actor""" + actor: ContentActor! } -type MemberInvitedEvent implements Event & BaseGraphQLObject { +type CommentTextUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26234,27 +26379,18 @@ type MemberInvitedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - invitingMember: Membership! - invitingMemberId: String! - newMember: Membership! - newMemberId: String! - - """New member root account in SS58 encoding.""" - rootAccount: String! - - """New member controller in SS58 encoding.""" - controllerAccount: String! - - """New member handle.""" - handle: String! - metadata: MemberMetadata! - metadataId: String! + comment: Comment! + commentId: String! + video: Video! + videoId: String! + videoChannel: Channel! + videoChannelId: String! - """Member's initial, invitation-locked balance""" - initialBalance: BigInt! + """New comment text""" + newText: String! } -type MemberProfileUpdatedEvent implements Event & BaseGraphQLObject { +type CommentDeletedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26277,24 +26413,16 @@ type MemberProfileUpdatedEvent implements Event & BaseGraphQLObject { indexInBlock: Int! """Filtering options for interface implementers""" - type: EventTypeOptions - member: Membership! - memberId: String! - - """ - New member handle (utf-8 string). Null means no new value was provided. - """ - newHandle: String - - """ - New member handle (raw hex string). Null means no new value was provided. - """ - newHandleRaw: String - newMetadata: MemberMetadata! - newMetadataId: String! + type: EventTypeOptions + comment: Comment! + commentId: String! + video: Video! + videoId: String! + videoChannel: Channel! + videoChannelId: String! } -type MembershipBoughtEvent implements Event & BaseGraphQLObject { +type CommentModeratedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26318,24 +26446,21 @@ type MembershipBoughtEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - newMember: Membership! - newMemberId: String! - - """New member root account in SS58 encoding.""" - rootAccount: String! + comment: Comment! + commentId: String! + video: Video! + videoId: String! + videoChannel: Channel! + videoChannelId: String! - """New member controller in SS58 encoding.""" - controllerAccount: String! + """The actor responsible for the removal of comment""" + actor: ContentActor! - """New member handle.""" - handle: String! - metadata: MemberMetadata! - metadataId: String! - referrer: Membership - referrerId: String + """Comment deletion rationale""" + rationale: String! } -type MembershipGiftedEvent implements Event & BaseGraphQLObject { +type CommentPinnedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26359,22 +26484,18 @@ type MembershipGiftedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - newMember: Membership! - newMemberId: String! - - """New member root account in SS58 encoding.""" - rootAccount: String! - - """New member controller in SS58 encoding.""" - controllerAccount: String! + comment: Comment! + commentId: String! + video: Video! + videoId: String! + videoChannel: Channel! + videoChannelId: String! - """New member handle.""" - handle: String! - metadata: MemberMetadata! - metadataId: String! + """The action performed. true if comment is pinned, otherwise false.""" + action: Boolean! } -type ProposalCreatedEvent implements Event & BaseGraphQLObject { +type CommentReactedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26398,11 +26519,20 @@ type ProposalCreatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - proposal: Proposal! - proposalId: String! + comment: Comment! + commentId: String! + video: Video! + videoId: String! + videoChannel: Channel! + videoChannelId: String! + + """The reaction id""" + reactionResult: Int! + reactingMember: Membership! + reactingMemberId: String! } -type ProposalStatusUpdatedEvent implements Event & BaseGraphQLObject { +type CommentCreatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26426,14 +26556,20 @@ type ProposalStatusUpdatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - proposal: Proposal! - proposalId: String! + comment: Comment! + commentId: String! + parentCommentAuthor: Membership + parentCommentAuthorId: String + video: Video! + videoId: String! + videoChannel: Channel! + videoChannelId: String! - """The new proposal intermediate status (Deciding/Gracing/Dormant)""" - newStatus: ProposalIntermediateStatus! + """Comment's original text""" + text: String! } -type ProposalVotedEvent implements Event & BaseGraphQLObject { +type MemberBannedFromChannelEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26457,24 +26593,18 @@ type ProposalVotedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - voter: Membership! - voterId: String! - - """The kind of the vote that was casted""" - voteKind: ProposalVoteKind! - proposal: Proposal! - proposalId: String! - - """The rationale behind the vote""" - rationale: String! + channel: Channel! + channelId: String! + member: Membership! + memberId: String! """ - The voting round - number representing which Deciding period the vote was casted in (starting with 1), useful when the proposal must be approved during multiple council terms (constitution > 1) + The action performed. true if member is banned, false if member is unbanned """ - votingRound: Int! + action: Boolean! } -type ProposalCancelledEvent implements Event & BaseGraphQLObject { +type VideoReactedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26498,11 +26628,18 @@ type ProposalCancelledEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - proposal: Proposal! - proposalId: String! + video: Video! + videoId: String! + videoChannel: Channel! + videoChannelId: String! + + """The reaction result""" + reactionResult: VideoReactionOptions! + reactingMember: Membership! + reactingMemberId: String! } -type ProposalDecisionMadeEvent implements Event & BaseGraphQLObject { +type VideoReactionsPreferenceEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26526,14 +26663,14 @@ type ProposalDecisionMadeEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - proposal: Proposal! - proposalId: String! + video: Video! + videoId: String! - """The voting decision status""" - decisionStatus: ProposalDecisionStatus! + """Is comment section enabled (true if enabled)""" + reactionsStatus: Boolean! } -type ProposalExecutedEvent implements Event & BaseGraphQLObject { +type MemberCreatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26557,14 +26694,25 @@ type ProposalExecutedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - proposal: Proposal! - proposalId: String! + newMember: Membership! + newMemberId: String! - """The execution status""" - executionStatus: ProposalExecutionStatus! + """New member root account in SS58 encoding.""" + rootAccount: String! + + """New member controller in SS58 encoding.""" + controllerAccount: String! + + """New member handle.""" + handle: String! + metadata: MemberMetadata! + metadataId: String! + + """Whether member is founding member.""" + isFoundingMember: Boolean! } -type ProposalDiscussionThreadModeChangedEvent implements Event & BaseGraphQLObject { +type MemberInvitedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26588,16 +26736,27 @@ type ProposalDiscussionThreadModeChangedEvent implements Event & BaseGraphQLObje """Filtering options for interface implementers""" type: EventTypeOptions - thread: ProposalDiscussionThread! - threadId: String! + invitingMember: Membership! + invitingMemberId: String! + newMember: Membership! + newMemberId: String! - """The new thread mode""" - newMode: ProposalDiscussionThreadMode! - actor: Membership! - actorId: String! + """New member root account in SS58 encoding.""" + rootAccount: String! + + """New member controller in SS58 encoding.""" + controllerAccount: String! + + """New member handle.""" + handle: String! + metadata: MemberMetadata! + metadataId: String! + + """Member's initial, invitation-locked balance""" + initialBalance: BigInt! } -type ProposalDiscussionPostUpdatedEvent implements Event & BaseGraphQLObject { +type MemberProfileUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26621,14 +26780,23 @@ type ProposalDiscussionPostUpdatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - post: ProposalDiscussionPost! - postId: String! + member: Membership! + memberId: String! - """New post text""" - text: String! + """ + New member handle (utf-8 string). Null means no new value was provided. + """ + newHandle: String + + """ + New member handle (raw hex string). Null means no new value was provided. + """ + newHandleRaw: String + newMetadata: MemberMetadata! + newMetadataId: String! } -type ProposalDiscussionPostCreatedEvent implements Event & BaseGraphQLObject { +type MembershipBoughtEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26652,14 +26820,24 @@ type ProposalDiscussionPostCreatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - post: ProposalDiscussionPost! - postId: String! + newMember: Membership! + newMemberId: String! - """Initial post text""" - text: String! + """New member root account in SS58 encoding.""" + rootAccount: String! + + """New member controller in SS58 encoding.""" + controllerAccount: String! + + """New member handle.""" + handle: String! + metadata: MemberMetadata! + metadataId: String! + referrer: Membership + referrerId: String } -type ProposalDiscussionPostDeletedEvent implements Event & BaseGraphQLObject { +type MembershipGiftedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26683,10 +26861,19 @@ type ProposalDiscussionPostDeletedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - post: ProposalDiscussionPost! - postId: String! - actor: Membership! - actorId: String! + newMember: Membership! + newMemberId: String! + + """New member root account in SS58 encoding.""" + rootAccount: String! + + """New member controller in SS58 encoding.""" + controllerAccount: String! + + """New member handle.""" + handle: String! + metadata: MemberMetadata! + metadataId: String! } type VoteCastEvent implements Event & BaseGraphQLObject { @@ -28229,6 +28416,12 @@ type Query { storageDataObjects(offset: Int, limit: Int = 50, where: StorageDataObjectWhereInput, orderBy: [StorageDataObjectOrderByInput!]): [StorageDataObject!]! storageDataObjectByUniqueInput(where: StorageDataObjectWhereUniqueInput!): StorageDataObject storageDataObjectsConnection(first: Int, after: String, last: Int, before: String, where: StorageDataObjectWhereInput, orderBy: [StorageDataObjectOrderByInput!]): StorageDataObjectConnection! + tagPermittedWorkers(offset: Int, limit: Int = 50, where: TagPermittedWorkerWhereInput, orderBy: [TagPermittedWorkerOrderByInput!]): [TagPermittedWorker!]! + tagPermittedWorkerByUniqueInput(where: TagPermittedWorkerWhereUniqueInput!): TagPermittedWorker + tagPermittedWorkersConnection(first: Int, after: String, last: Int, before: String, where: TagPermittedWorkerWhereInput, orderBy: [TagPermittedWorkerOrderByInput!]): TagPermittedWorkerConnection! + tags(offset: Int, limit: Int = 50, where: TagWhereInput, orderBy: [TagOrderByInput!]): [Tag!]! + tagByUniqueInput(where: TagWhereUniqueInput!): Tag + tagsConnection(first: Int, after: String, last: Int, before: String, where: TagWhereInput, orderBy: [TagOrderByInput!]): TagConnection! terminatedLeaderEvents(offset: Int, limit: Int = 50, where: TerminatedLeaderEventWhereInput, orderBy: [TerminatedLeaderEventOrderByInput!]): [TerminatedLeaderEvent!]! terminatedLeaderEventByUniqueInput(where: TerminatedLeaderEventWhereUniqueInput!): TerminatedLeaderEvent terminatedLeaderEventsConnection(first: Int, after: String, last: Int, before: String, where: TerminatedLeaderEventWhereInput, orderBy: [TerminatedLeaderEventOrderByInput!]): TerminatedLeaderEventConnection! @@ -31972,6 +32165,34 @@ enum StorageDataObjectOrderByInput { unsetAt_DESC } +enum TagPermittedWorkerOrderByInput { + createdAt_ASC + createdAt_DESC + updatedAt_ASC + updatedAt_DESC + deletedAt_ASC + deletedAt_DESC + workerId_ASC + workerId_DESC +} + +enum TagOrderByInput { + createdAt_ASC + createdAt_DESC + updatedAt_ASC + updatedAt_DESC + deletedAt_ASC + deletedAt_DESC + name_ASC + name_DESC + description_ASC + description_DESC + type_ASC + type_DESC + visibility_ASC + visibility_DESC +} + enum TerminatedLeaderEventOrderByInput { createdAt_ASC createdAt_DESC diff --git a/metadata-protobuf/proto/WorkingGroups.proto b/metadata-protobuf/proto/WorkingGroups.proto index 1c2ae68e59..ea4a2b3e73 100644 --- a/metadata-protobuf/proto/WorkingGroups.proto +++ b/metadata-protobuf/proto/WorkingGroups.proto @@ -63,10 +63,91 @@ message ModeratePost { required string rationale = 2; } +message CreateTag { + // Name of new Tag, e.g : roadmap + required string name = 1; + + // Description of new Tag, e.g : Roadmap covering the Joystream ecosystem + required string description = 2; + + // Type of new Tag : e.g : roadmap + required string type = 3; + + // Visibility of new Tag : e.g : true + required bool visibility = 4; +} + +message UpdateTag { + // ID of tag + required string tag_id = 1; + + // name of tag + optional string name = 2; + + // Updated Description of Tag + optional string description = 3; + + // Updated Type of Tag + optional string type = 4; + + // Updated Visibility of Tag + optional bool visibility = 5; +} + +message AssignTagsToThread { + // ID of tag + repeated string tag_ids = 1; + + // ID of thread + required string thread_id = 2; +} + +message UnassignTagsFromThread { + // ID of tag + repeated string tag_ids = 1; + + // ID of thread + required string thread_id = 2; +} + +message AssignTagsToProposal { + // ID of tag + repeated string tag_ids = 1; + + // ID of proposal + required string proposal_id = 2; +} + +message UnassignTagsFromProposal { + // ID of tag + repeated string tag_ids = 1; + + // ID of proposal + required string proposal_id = 2; +} + +message AllowTagToWorker { + // ID of worker + required uint64 worker_id = 1; +} + +message DisallowTagToWorker { + // ID of worker + required uint64 worker_id = 1; +} + message RemarkMetadataAction { oneof action { ModeratePost moderate_post = 1; VerifyValidator verify_validator = 2; + CreateTag create_tag = 3; + UpdateTag update_tag = 4; + AssignTagsToThread assign_tags_to_thread = 5; + UnassignTagsFromThread unassign_tags_from_thread = 6; + AssignTagsToProposal assign_tags_to_proposal = 7; + UnassignTagsFromProposal unassign_tags_from_proposal = 8; + AllowTagToWorker allow_tag_to_worker = 9; + DisallowTagToWorker disallow_tag_to_worker = 10; } } diff --git a/query-node/CHANGELOG.md b/query-node/CHANGELOG.md index 2444c11327..533d8cdf2b 100644 --- a/query-node/CHANGELOG.md +++ b/query-node/CHANGELOG.md @@ -2,7 +2,7 @@ - Refactor of mappings for more better handling of error cases. [#4856](https://github.com/Joystream/joystream/pull/4856) - Bug fix [#4855](https://github.com/Joystream/joystream/issues/4855) -- Add support for UpdateGlobalNftLimit proposal. +- Add support for UpdateGlobalNftLimit proposal. ### 1.6.0 diff --git a/query-node/mappings/src/common.ts b/query-node/mappings/src/common.ts index 398aabbc8a..67f0d40b02 100644 --- a/query-node/mappings/src/common.ts +++ b/query-node/mappings/src/common.ts @@ -434,4 +434,12 @@ export enum MetaprotocolTxError { // Channel errors InvalidChannelRewardAccount = 'InvalidChannelRewardAccount', + + // Tag errors + TagAlreadyExists = 'TagAlreadyExists', + TagIsNotLead = 'TagIsNotLead', + TagNotFound = 'TagNotFound', + TagPermNotAllowed = 'TagPermNotAllowed', + TagInvalidThreadId = 'TagInvalidThreadId', + TagInvalidProposalId = 'TagInvalidProposalId', } diff --git a/query-node/mappings/src/label/tag.ts b/query-node/mappings/src/label/tag.ts new file mode 100644 index 0000000000..cfaff822cc --- /dev/null +++ b/query-node/mappings/src/label/tag.ts @@ -0,0 +1,295 @@ +import _ from 'lodash' +import { DatabaseManager } from '@joystream/hydra-common' +import { + ICreateTag, + IUpdateTag, + IAssignTagsToThread, + IAssignTagsToProposal, + IUnassignTagsFromThread, + IUnassignTagsFromProposal, + IAllowTagToWorker, + IDisallowTagToWorker, + IRemarkMetadataAction, +} from '@joystream/metadata-protobuf' +import { DecodedMetadataObject } from '@joystream/metadata-protobuf/types' +import { Tag, TagPermittedWorker, ForumThread, Proposal } from 'query-node/dist/model' +import { MetaprotocolTxError, getOneBy, getById, logger, invalidMetadata } from 'src/common' + +export async function processTagMessage( + store: DatabaseManager, + metadata: DecodedMetadataObject, + groupName: string, + isLead = true, + workerId = 0 +): Promise { + if (groupName !== 'forumWorkingGroup') { + return invalidMetadata(`The ${groupName} is not allowed for Tags.`) + } + + if (metadata?.createTag) { + return await processCreateTag(store, metadata?.createTag, isLead) + } else if (metadata?.updateTag) { + return await processUpdateTag(store, metadata?.updateTag, isLead) + } else if (metadata?.assignTagsToThread) { + return await processAssignTagsToThread(store, metadata?.assignTagsToThread, isLead, workerId) + } else if (metadata?.assignTagsToProposal) { + return await processAssignTagsToProposal(store, metadata?.assignTagsToProposal, isLead, workerId) + } else if (metadata?.unassignTagsFromThread) { + return await processUnassignTagsFromThread(store, metadata?.unassignTagsFromThread, isLead, workerId) + } else if (metadata?.unassignTagsFromProposal) { + return await processUnassignTagsFromProposal(store, metadata?.unassignTagsFromProposal, isLead, workerId) + } else if (metadata?.allowTagToWorker) { + return await processAllowTagToWorker(store, metadata?.allowTagToWorker, isLead) + } else if (metadata?.disallowTagToWorker) { + return await processDisallowTagToWorker(store, metadata?.disallowTagToWorker, isLead) + } else { + return invalidMetadata('Unrecognized Tag format') // Never reached here + } +} + +export async function processCreateTag( + store: DatabaseManager, + metadata: DecodedMetadataObject, + isLead: boolean +): Promise { + const { name, description, type, visibility } = metadata + + if (isLead === false) { + return MetaprotocolTxError.TagPermNotAllowed + } + + const isTagExists = await getOneBy(store, Tag, { name: name }) + if (isTagExists) { + return MetaprotocolTxError.TagAlreadyExists + } + + const newTag = new Tag({ + name: name, + description: description, + type: type, + visibility: visibility, + }) + + await store.save(newTag) + logger.info('Tag has been created', { name }) + + return newTag +} + +export async function processUpdateTag( + store: DatabaseManager, + metadata: DecodedMetadataObject, + isLead: boolean +): Promise { + const { tagId, name, description, type, visibility } = metadata + + if (isLead === false) { + return MetaprotocolTxError.TagPermNotAllowed + } + + const tag: Tag | undefined = await getById(store, Tag, tagId) + if (!tag) { + return MetaprotocolTxError.TagNotFound + } + + if (name) { + const isTagExists = await getOneBy(store, Tag, { name: name }) + if (isTagExists) { + return MetaprotocolTxError.TagAlreadyExists + } + + tag.name = name + } + + if (description) { + tag.description = description + } + + if (type) { + tag.type = type + } + + if (visibility) { + tag.visibility = visibility + } + + await store.save(tag) + + logger.info('Tag has been updated', { tagId, name, description }) + return tag +} + +export async function processAssignTagsToThread( + store: DatabaseManager, + metadata: DecodedMetadataObject, + isLead: boolean, + workerId: number +): Promise { + const { tagIds, threadId } = metadata + + if (!isLead) { + const tagPermittedWorker: TagPermittedWorker | undefined = await getOneBy(store, TagPermittedWorker, { + workerId: workerId.toString(), + }) + if (!tagPermittedWorker) { + return MetaprotocolTxError.TagPermNotAllowed + } + } + + const forumThread: ForumThread | undefined = await getById(store, ForumThread, threadId) + if (!forumThread) { + return MetaprotocolTxError.TagInvalidThreadId + } + + const currentTagIds = (forumThread.newTags || []).map((t) => t.id) + const tagIdsToSet = _.union(currentTagIds, tagIds) + + const tags = await Promise.all(tagIdsToSet.map(async (tagId: string) => await getById(store, Tag, tagId))) + forumThread.newTags = tags.filter((t): t is Tag => !!t) + await store.save(forumThread) + + logger.info('Assigned forum thread tags', { threadId, tagIdsToSet }) + return forumThread +} + +export async function processAssignTagsToProposal( + store: DatabaseManager, + metadata: DecodedMetadataObject, + isLead: boolean, + workerId: number +): Promise { + const { tagIds, proposalId } = metadata + + if (!isLead) { + const tagPermittedWorker: TagPermittedWorker | undefined = await getOneBy(store, TagPermittedWorker, { + workerId: workerId.toString(), + }) + if (!tagPermittedWorker) { + return MetaprotocolTxError.TagPermNotAllowed + } + } + + const proposal: Proposal | undefined = await getById(store, Proposal, proposalId) + if (!proposal) { + return MetaprotocolTxError.TagInvalidProposalId + } + + const currentTagIds = (proposal.tags || []).map((t) => t.id) + const tagIdsToSet = _.union(currentTagIds, tagIds) + + const tags = await Promise.all(tagIdsToSet.map(async (tagId: string) => await getById(store, Tag, tagId))) + proposal.tags = tags.filter((t): t is Tag => !!t) + await store.save(proposal) + + logger.info('Assigned proposal tags', { proposalId, tagIdsToSet }) + return proposal +} + +export async function processUnassignTagsFromThread( + store: DatabaseManager, + metadata: DecodedMetadataObject, + isLead: boolean, + workerId: number +): Promise { + const { tagIds, threadId } = metadata + + if (!isLead) { + const tagPermittedWorker: TagPermittedWorker | undefined = await getOneBy(store, TagPermittedWorker, { + workerId: workerId.toString(), + }) + if (!tagPermittedWorker) { + return MetaprotocolTxError.TagPermNotAllowed + } + } + + const forumThread: ForumThread | undefined = await getById(store, ForumThread, threadId) + if (!forumThread) { + return MetaprotocolTxError.TagInvalidThreadId + } + + const remainingTags = (forumThread.newTags || []).filter((t) => !(tagIds || []).includes(t.id)) + forumThread.newTags = remainingTags + await store.save(forumThread) + + logger.info('Unassigned forum thread tags', { threadId, remainingTags }) + return forumThread +} + +export async function processUnassignTagsFromProposal( + store: DatabaseManager, + metadata: DecodedMetadataObject, + isLead: boolean, + workerId: number +): Promise { + const { tagIds, proposalId } = metadata + + if (!isLead) { + const tagPermittedWorker: TagPermittedWorker | undefined = await getOneBy(store, TagPermittedWorker, { + workerId: workerId.toString(), + }) + if (!tagPermittedWorker) { + return MetaprotocolTxError.TagPermNotAllowed + } + } + + const proposal: Proposal | undefined = await getById(store, Proposal, proposalId) + if (!proposal) { + return MetaprotocolTxError.TagInvalidProposalId + } + + const remainingTags = (proposal.tags || []).filter((t) => !(tagIds || []).includes(t.id)) + proposal.tags = remainingTags + await store.save(proposal) + + logger.info('Unassigned proposal tags', { proposalId, remainingTags }) + return proposal +} + +export async function processAllowTagToWorker( + store: DatabaseManager, + metadata: DecodedMetadataObject, + isLead: boolean +): Promise { + const { workerId: assigneeId } = metadata + + if (isLead === false) { + return invalidMetadata(`The Worker is not permitted for this operation.`) + } + + const tagPermittedWorker: TagPermittedWorker | undefined = await getOneBy(store, TagPermittedWorker, { + workerId: assigneeId.toString(), + }) + + if (!tagPermittedWorker) { + const newTagToWorker = new TagPermittedWorker({ + workerId: assigneeId, + }) + await store.save(newTagToWorker) + logger.info(`The worker's permission is allowed`, { assigneeId }) + } else { + return invalidMetadata(`The Worker's permission is already allowed.`) + } +} + +export async function processDisallowTagToWorker( + store: DatabaseManager, + metadata: DecodedMetadataObject, + isLead: boolean +): Promise { + const { workerId: assigneeId } = metadata + + if (isLead === false) { + return invalidMetadata(`The Worker is not permitted for this operation.`) + } + + const tagPermittedWorker: TagPermittedWorker | undefined = await getOneBy(store, TagPermittedWorker, { + workerId: assigneeId.toString(), + }) + + if (tagPermittedWorker) { + await store.remove(tagPermittedWorker) + logger.info(`The worker's permission is denied`, { assigneeId }) + } else { + return invalidMetadata(`The Worker's permission is already denied.`) + } +} diff --git a/query-node/mappings/src/workingGroups.ts b/query-node/mappings/src/workingGroups.ts index 31c9994a30..3358f7f86d 100644 --- a/query-node/mappings/src/workingGroups.ts +++ b/query-node/mappings/src/workingGroups.ts @@ -118,6 +118,7 @@ import { toNumber, } from './common' import { moderatePost } from './forum' +import { processTagMessage } from './label/tag' // Reusable functions async function getWorkingGroupLeadOrFail(store: DatabaseManager, groupName: WorkingGroupModuleName): Promise { @@ -739,6 +740,17 @@ export async function workingGroups_LeadRemarked({ store, event }: EventContext member.metadata.isVerifiedValidator = isVerified await store.save(member.metadata) await store.save(member) + } else if ( + metadata?.createTag || + metadata?.updateTag || + metadata?.assignTagsToThread || + metadata?.assignTagsToProposal || + metadata?.unassignTagsFromThread || + metadata?.unassignTagsFromProposal || + metadata?.allowTagToWorker || + metadata?.disallowTagToWorker + ) { + return await processTagMessage(store, metadata, group.name) } else { return invalidMetadata('Unrecognized remarked action') } @@ -774,6 +786,17 @@ export async function workingGroups_WorkerRemarked({ store, event }: EventContex member.metadata.isVerifiedValidator = isVerified await store.save(member.metadata) await store.save(member) + } else if ( + metadata?.createTag || + metadata?.updateTag || + metadata?.assignTagsToThread || + metadata?.assignTagsToProposal || + metadata?.unassignTagsFromThread || + metadata?.unassignTagsFromProposal || + metadata?.allowTagToWorker || + metadata?.disallowTagToWorker + ) { + return await processTagMessage(store, metadata, group.name, false, workerId.toNumber()) } else { return invalidMetadata('Unrecognized remarked action') } diff --git a/query-node/schemas/forum.graphql b/query-node/schemas/forum.graphql index ee1662833b..f18174d0d6 100644 --- a/query-node/schemas/forum.graphql +++ b/query-node/schemas/forum.graphql @@ -113,8 +113,12 @@ type ForumThread @entity { "Assigned thread tags" tags: [ForumThreadTag!] + + "New tag/label properties" + newTags: [Tag!] } +# Deprecated type ForumThreadTag @entity { "Tag id (and simultaneously - tag label)" id: ID! diff --git a/query-node/schemas/proposals.graphql b/query-node/schemas/proposals.graphql index 7bb4725562..62d4feb860 100644 --- a/query-node/schemas/proposals.graphql +++ b/query-node/schemas/proposals.graphql @@ -148,6 +148,9 @@ type Proposal @entity { "Time the current status was set at (based on block timestamp)" statusSetAtTime: DateTime! + + "Tags for proposal" + tags: [Tag!] } type SignalProposalDetails @variant { diff --git a/query-node/schemas/tag.graphql b/query-node/schemas/tag.graphql new file mode 100644 index 0000000000..f488fb35ee --- /dev/null +++ b/query-node/schemas/tag.graphql @@ -0,0 +1,23 @@ +type Tag @entity { + "Runtime entity identifier (EntityId)" + id: ID! + "The name of tag" + name: String! + "The description of tag" + description: String! + "The type of tag" + type: String! + "Visibility of tag" + visibility: Boolean! + "Forum Threads" + forumThreads: [ForumThread!] @derivedFrom(field: "newTags") + "Proposals" + proposals: [Proposal!] @derivedFrom(field: "tags") +} + +type TagPermittedWorker @entity { + "Runtime entity identifier (EntityId)" + id: ID! + "Id of worker" + workerId: ID! +} diff --git a/storage-node/src/services/queryNode/schema.graphql b/storage-node/src/services/queryNode/schema.graphql index 0f82590722..1e21139160 100644 --- a/storage-node/src/services/queryNode/schema.graphql +++ b/storage-node/src/services/queryNode/schema.graphql @@ -290,6 +290,157 @@ type ForumThreadTag implements BaseGraphQLObject { visibleThreadsCount: Int! } +type ProposalDiscussionPost implements BaseGraphQLObject { + id: ID! + createdAt: DateTime! + createdById: ID! + updatedAt: DateTime + updatedById: ID + deletedAt: DateTime + deletedById: ID + version: Int! + discussionThread: ProposalDiscussionThread! + discussionThreadId: String! + author: Membership! + authorId: String! + + """Current post status""" + status: ProposalDiscussionPostStatus! + + """True if the post is either Active or Locked""" + isVisible: Boolean! + + """Post's md-formatted text""" + text: String! + repliesTo: ProposalDiscussionPost + repliesToId: String + updates: [ProposalDiscussionPostUpdatedEvent!]! + createdInEvent: ProposalDiscussionPostCreatedEvent! + proposaldiscussionpostrepliesTo: [ProposalDiscussionPost!] + proposaldiscussionpostdeletedeventpost: [ProposalDiscussionPostDeletedEvent!] +} + +union ProposalDiscussionPostStatus = ProposalDiscussionPostStatusActive | ProposalDiscussionPostStatusLocked | ProposalDiscussionPostStatusRemoved + +union ProposalDiscussionThreadMode = ProposalDiscussionThreadModeOpen | ProposalDiscussionThreadModeClosed + +type ProposalDiscussionThread implements BaseGraphQLObject { + id: ID! + createdAt: DateTime! + createdById: ID! + updatedAt: DateTime + updatedById: ID + deletedAt: DateTime + deletedById: ID + version: Int! + proposal: Proposal! + proposalId: String! + posts: [ProposalDiscussionPost!]! + + """Current thread mode""" + mode: ProposalDiscussionThreadMode! + modeChanges: [ProposalDiscussionThreadModeChangedEvent!]! +} + +union ProposalIntermediateStatus = ProposalStatusDeciding | ProposalStatusGracing | ProposalStatusDormant + +enum ProposalVoteKind { + APPROVE + REJECT + SLASH + ABSTAIN +} + +union ProposalDecisionStatus = ProposalStatusDormant | ProposalStatusGracing | ProposalStatusVetoed | ProposalStatusSlashed | ProposalStatusRejected | ProposalStatusExpired | ProposalStatusCancelled | ProposalStatusCanceledByRuntime + +union ProposalExecutionStatus = ProposalStatusExecuted | ProposalStatusExecutionFailed + +type Proposal implements BaseGraphQLObject { + id: ID! + createdAt: DateTime! + createdById: ID! + updatedAt: DateTime + updatedById: ID + deletedAt: DateTime + deletedById: ID + version: Int! + + """Proposal title""" + title: String! + + """Proposal description""" + description: String! + + """Proposal details depending on proposal type""" + details: ProposalDetails! + + """Staking account with proposal stake (in case a stake is required)""" + stakingAccount: String + creator: Membership! + creatorId: String! + createdInEvent: ProposalCreatedEvent! + + """ + Exact block number the proposal is supposed to be executed at (if specified) + """ + exactExecutionBlock: Int + discussionThread: ProposalDiscussionThread! + + """ + How many prior councils have already approved the proposal (starts with 0) + """ + councilApprovals: Int! + proposalStatusUpdates: [ProposalStatusUpdatedEvent!]! + votes: [ProposalVotedEvent!]! + + """Current proposal status""" + status: ProposalStatus! + + """ + If true then the proposal status is final and will not change form this point + """ + isFinalized: Boolean + + """Number of the block the current status was set at""" + statusSetAtBlock: Int! + + """Time the current status was set at (based on block timestamp)""" + statusSetAtTime: DateTime! + tags: [Tag!]! + proposalcancelledeventproposal: [ProposalCancelledEvent!] + proposaldecisionmadeeventproposal: [ProposalDecisionMadeEvent!] + proposalexecutedeventproposal: [ProposalExecutedEvent!] +} + +union ProposalDetails = SignalProposalDetails | RuntimeUpgradeProposalDetails | FundingRequestProposalDetails | SetMaxValidatorCountProposalDetails | CreateWorkingGroupLeadOpeningProposalDetails | FillWorkingGroupLeadOpeningProposalDetails | UpdateWorkingGroupBudgetProposalDetails | DecreaseWorkingGroupLeadStakeProposalDetails | SlashWorkingGroupLeadProposalDetails | SetWorkingGroupLeadRewardProposalDetails | TerminateWorkingGroupLeadProposalDetails | AmendConstitutionProposalDetails | CancelWorkingGroupLeadOpeningProposalDetails | SetMembershipPriceProposalDetails | SetCouncilBudgetIncrementProposalDetails | SetCouncilorRewardProposalDetails | SetInitialInvitationBalanceProposalDetails | SetInitialInvitationCountProposalDetails | SetMembershipLeadInvitationQuotaProposalDetails | SetReferralCutProposalDetails | VetoProposalDetails | UpdateChannelPayoutsProposalDetails | UpdateGlobalNftLimitProposalDetails + +union ProposalStatus = ProposalStatusDeciding | ProposalStatusGracing | ProposalStatusDormant | ProposalStatusVetoed | ProposalStatusExecuted | ProposalStatusExecutionFailed | ProposalStatusSlashed | ProposalStatusRejected | ProposalStatusExpired | ProposalStatusCancelled | ProposalStatusCanceledByRuntime + +type Tag implements BaseGraphQLObject { + id: ID! + createdAt: DateTime! + createdById: ID! + updatedAt: DateTime + updatedById: ID + deletedAt: DateTime + deletedById: ID + version: Int! + + """The name of tag""" + name: String! + + """The description of tag""" + description: String! + + """The type of tag""" + type: String! + + """Visibility of tag""" + visibility: Boolean! + forumThreads: [ForumThread!]! + proposals: [Proposal!]! +} + type BountyEntrantWhitelist implements BaseGraphQLObject { id: ID! createdAt: DateTime! @@ -472,6 +623,7 @@ type ForumThread implements BaseGraphQLObject { madeStickyInEvents: [CategoryStickyThreadUpdateEvent!]! movedInEvents: [ThreadMovedEvent!]! tags: [ForumThreadTag!]! + newTags: [Tag!]! bountydiscussionThread: [Bounty!] threaddeletedeventthread: [ThreadDeletedEvent!] threadmoderatedeventthread: [ThreadModeratedEvent!] @@ -2039,20 +2191,7 @@ type MemberMetadata implements BaseGraphQLObject { union Avatar = AvatarObject | AvatarUri -union ProposalIntermediateStatus = ProposalStatusDeciding | ProposalStatusGracing | ProposalStatusDormant - -enum ProposalVoteKind { - APPROVE - REJECT - SLASH - ABSTAIN -} - -union ProposalDecisionStatus = ProposalStatusDormant | ProposalStatusGracing | ProposalStatusVetoed | ProposalStatusSlashed | ProposalStatusRejected | ProposalStatusExpired | ProposalStatusCancelled | ProposalStatusCanceledByRuntime - -union ProposalExecutionStatus = ProposalStatusExecuted | ProposalStatusExecutionFailed - -type Proposal implements BaseGraphQLObject { +type ProposalDiscussionWhitelist implements BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -2061,60 +2200,11 @@ type Proposal implements BaseGraphQLObject { deletedAt: DateTime deletedById: ID version: Int! - - """Proposal title""" - title: String! - - """Proposal description""" - description: String! - - """Proposal details depending on proposal type""" - details: ProposalDetails! - - """Staking account with proposal stake (in case a stake is required)""" - stakingAccount: String - creator: Membership! - creatorId: String! - createdInEvent: ProposalCreatedEvent! - - """ - Exact block number the proposal is supposed to be executed at (if specified) - """ - exactExecutionBlock: Int - discussionThread: ProposalDiscussionThread! - - """ - How many prior councils have already approved the proposal (starts with 0) - """ - councilApprovals: Int! - proposalStatusUpdates: [ProposalStatusUpdatedEvent!]! - votes: [ProposalVotedEvent!]! - - """Current proposal status""" - status: ProposalStatus! - - """ - If true then the proposal status is final and will not change form this point - """ - isFinalized: Boolean - - """Number of the block the current status was set at""" - statusSetAtBlock: Int! - - """Time the current status was set at (based on block timestamp)""" - statusSetAtTime: DateTime! - proposalcancelledeventproposal: [ProposalCancelledEvent!] - proposaldecisionmadeeventproposal: [ProposalDecisionMadeEvent!] - proposalexecutedeventproposal: [ProposalExecutedEvent!] + phantom: Int + members: [Membership!]! } -union ProposalDetails = SignalProposalDetails | RuntimeUpgradeProposalDetails | FundingRequestProposalDetails | SetMaxValidatorCountProposalDetails | CreateWorkingGroupLeadOpeningProposalDetails | FillWorkingGroupLeadOpeningProposalDetails | UpdateWorkingGroupBudgetProposalDetails | DecreaseWorkingGroupLeadStakeProposalDetails | SlashWorkingGroupLeadProposalDetails | SetWorkingGroupLeadRewardProposalDetails | TerminateWorkingGroupLeadProposalDetails | AmendConstitutionProposalDetails | CancelWorkingGroupLeadOpeningProposalDetails | SetMembershipPriceProposalDetails | SetCouncilBudgetIncrementProposalDetails | SetCouncilorRewardProposalDetails | SetInitialInvitationBalanceProposalDetails | SetInitialInvitationCountProposalDetails | SetMembershipLeadInvitationQuotaProposalDetails | SetReferralCutProposalDetails | VetoProposalDetails | UpdateChannelPayoutsProposalDetails | UpdateGlobalNftLimitProposalDetails - -union ProposalStatus = ProposalStatusDeciding | ProposalStatusGracing | ProposalStatusDormant | ProposalStatusVetoed | ProposalStatusExecuted | ProposalStatusExecutionFailed | ProposalStatusSlashed | ProposalStatusRejected | ProposalStatusExpired | ProposalStatusCancelled | ProposalStatusCanceledByRuntime - -union ProposalDiscussionThreadMode = ProposalDiscussionThreadModeOpen | ProposalDiscussionThreadModeClosed - -type ProposalDiscussionThread implements BaseGraphQLObject { +type RuntimeWasmBytecode implements BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -2123,86 +2213,23 @@ type ProposalDiscussionThread implements BaseGraphQLObject { deletedAt: DateTime deletedById: ID version: Int! - proposal: Proposal! - proposalId: String! - posts: [ProposalDiscussionPost!]! - """Current thread mode""" - mode: ProposalDiscussionThreadMode! - modeChanges: [ProposalDiscussionThreadModeChangedEvent!]! + """The bytecode itself""" + bytecode: Bytes! } -type ProposalDiscussionPost implements BaseGraphQLObject { - id: ID! - createdAt: DateTime! - createdById: ID! - updatedAt: DateTime - updatedById: ID - deletedAt: DateTime - deletedById: ID - version: Int! - discussionThread: ProposalDiscussionThread! - discussionThreadId: String! - author: Membership! - authorId: String! - - """Current post status""" - status: ProposalDiscussionPostStatus! - - """True if the post is either Active or Locked""" - isVisible: Boolean! +"""GraphQL representation of Bytes""" +scalar Bytes - """Post's md-formatted text""" +type AmendConstitutionProposalDetails { + """New (proposed) constitution text (md-formatted)""" text: String! - repliesTo: ProposalDiscussionPost - repliesToId: String - updates: [ProposalDiscussionPostUpdatedEvent!]! - createdInEvent: ProposalDiscussionPostCreatedEvent! - proposaldiscussionpostrepliesTo: [ProposalDiscussionPost!] - proposaldiscussionpostdeletedeventpost: [ProposalDiscussionPostDeletedEvent!] } -union ProposalDiscussionPostStatus = ProposalDiscussionPostStatusActive | ProposalDiscussionPostStatusLocked | ProposalDiscussionPostStatusRemoved - -type ProposalDiscussionWhitelist implements BaseGraphQLObject { - id: ID! - createdAt: DateTime! - createdById: ID! - updatedAt: DateTime - updatedById: ID - deletedAt: DateTime - deletedById: ID - version: Int! - phantom: Int - members: [Membership!]! -} - -type RuntimeWasmBytecode implements BaseGraphQLObject { - id: ID! - createdAt: DateTime! - createdById: ID! - updatedAt: DateTime - updatedById: ID - deletedAt: DateTime - deletedById: ID - version: Int! - - """The bytecode itself""" - bytecode: Bytes! -} - -"""GraphQL representation of Bytes""" -scalar Bytes - -type AmendConstitutionProposalDetails { - """New (proposed) constitution text (md-formatted)""" - text: String! -} - -type ApplicationStatusAccepted { - """Related OpeningFilled event""" - openingFilledEvent: OpeningFilledEvent -} +type ApplicationStatusAccepted { + """Related OpeningFilled event""" + openingFilledEvent: OpeningFilledEvent +} type ApplicationStatusCancelled { """Related OpeningCanceled event""" @@ -3464,6 +3491,20 @@ type ChannelVisibilitySetByModeratorEvent implements BaseGraphQLObject { union MetaprotocolTransactionStatus = MetaprotocolTransactionSuccessful | MetaprotocolTransactionErrored +type TagPermittedWorker implements BaseGraphQLObject { + id: ID! + createdAt: DateTime! + createdById: ID! + updatedAt: DateTime + updatedById: ID + deletedAt: DateTime + deletedById: ID + version: Int! + + """Id of worker""" + workerId: String! +} + type VideoAssetsDeletedByModeratorEvent implements BaseGraphQLObject { id: ID! createdAt: DateTime! @@ -5542,6 +5583,28 @@ type StorageDataObjectConnection { pageInfo: PageInfo! } +type TagPermittedWorkerEdge { + node: TagPermittedWorker! + cursor: String! +} + +type TagPermittedWorkerConnection { + totalCount: Int! + edges: [TagPermittedWorkerEdge!]! + pageInfo: PageInfo! +} + +type TagEdge { + node: Tag! + cursor: String! +} + +type TagConnection { + totalCount: Int! + edges: [TagEdge!]! + pageInfo: PageInfo! +} + type TerminatedLeaderEventEdge { node: TerminatedLeaderEvent! cursor: String! @@ -7551,7 +7614,7 @@ input ForumThreadTagUpdateInput { visibleThreadsCount: Float } -input BountyEntrantWhitelistWhereInput { +input ProposalCreatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -7576,36 +7639,52 @@ input BountyEntrantWhitelistWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - phantom_eq: Int - phantom_gt: Int - phantom_gte: Int - phantom_lt: Int - phantom_lte: Int - phantom_in: [Int!] - members_none: MembershipWhereInput - members_some: MembershipWhereInput - members_every: MembershipWhereInput - bountyentrantWhitelist_none: BountyWhereInput - bountyentrantWhitelist_some: BountyWhereInput - bountyentrantWhitelist_every: BountyWhereInput - AND: [BountyEntrantWhitelistWhereInput!] - OR: [BountyEntrantWhitelistWhereInput!] - NOT: [BountyEntrantWhitelistWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + proposal: ProposalWhereInput + AND: [ProposalCreatedEventWhereInput!] + OR: [ProposalCreatedEventWhereInput!] + NOT: [ProposalCreatedEventWhereInput!] } -input BountyEntrantWhitelistWhereUniqueInput { +input ProposalCreatedEventWhereUniqueInput { id: ID! } -input BountyEntrantWhitelistCreateInput { - phantom: Float +input ProposalCreatedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + proposal: ID! } -input BountyEntrantWhitelistUpdateInput { - phantom: Float +input ProposalCreatedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + proposal: ID } -input BountyFundedEventWhereInput { +input ProposalDiscussionPostUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -7649,33 +7728,40 @@ input BountyFundedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - contribution: BountyContributionWhereInput - AND: [BountyFundedEventWhereInput!] - OR: [BountyFundedEventWhereInput!] - NOT: [BountyFundedEventWhereInput!] + text_eq: String + text_contains: String + text_startsWith: String + text_endsWith: String + text_in: [String!] + post: ProposalDiscussionPostWhereInput + AND: [ProposalDiscussionPostUpdatedEventWhereInput!] + OR: [ProposalDiscussionPostUpdatedEventWhereInput!] + NOT: [ProposalDiscussionPostUpdatedEventWhereInput!] } -input BountyFundedEventWhereUniqueInput { +input ProposalDiscussionPostUpdatedEventWhereUniqueInput { id: ID! } -input BountyFundedEventCreateInput { +input ProposalDiscussionPostUpdatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - contribution: ID! + post: ID! + text: String! } -input BountyFundedEventUpdateInput { +input ProposalDiscussionPostUpdatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - contribution: ID + post: ID + text: String } -input BountyFundingWithdrawalEventWhereInput { +input ProposalDiscussionPostCreatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -7719,33 +7805,40 @@ input BountyFundingWithdrawalEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - contribution: BountyContributionWhereInput - AND: [BountyFundingWithdrawalEventWhereInput!] - OR: [BountyFundingWithdrawalEventWhereInput!] - NOT: [BountyFundingWithdrawalEventWhereInput!] + text_eq: String + text_contains: String + text_startsWith: String + text_endsWith: String + text_in: [String!] + post: ProposalDiscussionPostWhereInput + AND: [ProposalDiscussionPostCreatedEventWhereInput!] + OR: [ProposalDiscussionPostCreatedEventWhereInput!] + NOT: [ProposalDiscussionPostCreatedEventWhereInput!] } -input BountyFundingWithdrawalEventWhereUniqueInput { +input ProposalDiscussionPostCreatedEventWhereUniqueInput { id: ID! } -input BountyFundingWithdrawalEventCreateInput { +input ProposalDiscussionPostCreatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - contribution: ID! + post: ID! + text: String! } -input BountyFundingWithdrawalEventUpdateInput { +input ProposalDiscussionPostCreatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - contribution: ID + post: ID + text: String } -input BountyContributionWhereInput { +input ProposalDiscussionPostDeletedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -7770,47 +7863,55 @@ input BountyContributionWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - contributorId_eq: String - contributorId_contains: String - contributorId_startsWith: String - contributorId_endsWith: String - contributorId_in: [String!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - bounty: BountyWhereInput - contributor: MembershipWhereInput - bountyFundedEvents_none: BountyFundedEventWhereInput - bountyFundedEvents_some: BountyFundedEventWhereInput - bountyFundedEvents_every: BountyFundedEventWhereInput - withdrawnInEvent: BountyFundingWithdrawalEventWhereInput - AND: [BountyContributionWhereInput!] - OR: [BountyContributionWhereInput!] - NOT: [BountyContributionWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + post: ProposalDiscussionPostWhereInput + actor: MembershipWhereInput + AND: [ProposalDiscussionPostDeletedEventWhereInput!] + OR: [ProposalDiscussionPostDeletedEventWhereInput!] + NOT: [ProposalDiscussionPostDeletedEventWhereInput!] } -input BountyContributionWhereUniqueInput { +input ProposalDiscussionPostDeletedEventWhereUniqueInput { id: ID! } -input BountyContributionCreateInput { - bounty: ID! - contributor: ID - contributorId: String - amount: String! +input ProposalDiscussionPostDeletedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + post: ID! + actor: ID! } -input BountyContributionUpdateInput { - bounty: ID - contributor: ID - contributorId: String - amount: String +input ProposalDiscussionPostDeletedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + post: ID + actor: ID } -input WorkEntryAnnouncedEventWhereInput { +input ProposalDiscussionPostWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -7835,52 +7936,55 @@ input WorkEntryAnnouncedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - entry: BountyEntryWhereInput - AND: [WorkEntryAnnouncedEventWhereInput!] - OR: [WorkEntryAnnouncedEventWhereInput!] - NOT: [WorkEntryAnnouncedEventWhereInput!] + status_json: JSONObject + isVisible_eq: Boolean + isVisible_in: [Boolean!] + text_eq: String + text_contains: String + text_startsWith: String + text_endsWith: String + text_in: [String!] + discussionThread: ProposalDiscussionThreadWhereInput + author: MembershipWhereInput + repliesTo: ProposalDiscussionPostWhereInput + updates_none: ProposalDiscussionPostUpdatedEventWhereInput + updates_some: ProposalDiscussionPostUpdatedEventWhereInput + updates_every: ProposalDiscussionPostUpdatedEventWhereInput + createdInEvent: ProposalDiscussionPostCreatedEventWhereInput + proposaldiscussionpostrepliesTo_none: ProposalDiscussionPostWhereInput + proposaldiscussionpostrepliesTo_some: ProposalDiscussionPostWhereInput + proposaldiscussionpostrepliesTo_every: ProposalDiscussionPostWhereInput + proposaldiscussionpostdeletedeventpost_none: ProposalDiscussionPostDeletedEventWhereInput + proposaldiscussionpostdeletedeventpost_some: ProposalDiscussionPostDeletedEventWhereInput + proposaldiscussionpostdeletedeventpost_every: ProposalDiscussionPostDeletedEventWhereInput + AND: [ProposalDiscussionPostWhereInput!] + OR: [ProposalDiscussionPostWhereInput!] + NOT: [ProposalDiscussionPostWhereInput!] } -input WorkEntryAnnouncedEventWhereUniqueInput { +input ProposalDiscussionPostWhereUniqueInput { id: ID! } -input WorkEntryAnnouncedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - entry: ID! +input ProposalDiscussionPostCreateInput { + discussionThread: ID! + author: ID! + status: JSONObject! + isVisible: Boolean! + text: String! + repliesTo: ID } -input WorkEntryAnnouncedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - entry: ID +input ProposalDiscussionPostUpdateInput { + discussionThread: ID + author: ID + status: JSONObject + isVisible: Boolean + text: String + repliesTo: ID } -input WorkEntryWithdrawnEventWhereInput { +input ProposalDiscussionThreadModeChangedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -7924,33 +8028,91 @@ input WorkEntryWithdrawnEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - entry: BountyEntryWhereInput - AND: [WorkEntryWithdrawnEventWhereInput!] - OR: [WorkEntryWithdrawnEventWhereInput!] - NOT: [WorkEntryWithdrawnEventWhereInput!] + newMode_json: JSONObject + thread: ProposalDiscussionThreadWhereInput + actor: MembershipWhereInput + AND: [ProposalDiscussionThreadModeChangedEventWhereInput!] + OR: [ProposalDiscussionThreadModeChangedEventWhereInput!] + NOT: [ProposalDiscussionThreadModeChangedEventWhereInput!] } -input WorkEntryWithdrawnEventWhereUniqueInput { +input ProposalDiscussionThreadModeChangedEventWhereUniqueInput { id: ID! } -input WorkEntryWithdrawnEventCreateInput { +input ProposalDiscussionThreadModeChangedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - entry: ID! + thread: ID! + newMode: JSONObject! + actor: ID! } -input WorkEntryWithdrawnEventUpdateInput { +input ProposalDiscussionThreadModeChangedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - entry: ID + thread: ID + newMode: JSONObject + actor: ID } -input WorkEntrySlashedEventWhereInput { +input ProposalDiscussionThreadWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + mode_json: JSONObject + proposal: ProposalWhereInput + posts_none: ProposalDiscussionPostWhereInput + posts_some: ProposalDiscussionPostWhereInput + posts_every: ProposalDiscussionPostWhereInput + modeChanges_none: ProposalDiscussionThreadModeChangedEventWhereInput + modeChanges_some: ProposalDiscussionThreadModeChangedEventWhereInput + modeChanges_every: ProposalDiscussionThreadModeChangedEventWhereInput + AND: [ProposalDiscussionThreadWhereInput!] + OR: [ProposalDiscussionThreadWhereInput!] + NOT: [ProposalDiscussionThreadWhereInput!] +} + +input ProposalDiscussionThreadWhereUniqueInput { + id: ID! +} + +input ProposalDiscussionThreadCreateInput { + proposal: ID! + mode: JSONObject! +} + +input ProposalDiscussionThreadUpdateInput { + proposal: ID + mode: JSONObject +} + +input ProposalStatusUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -7994,33 +8156,36 @@ input WorkEntrySlashedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - entry: BountyEntryWhereInput - AND: [WorkEntrySlashedEventWhereInput!] - OR: [WorkEntrySlashedEventWhereInput!] - NOT: [WorkEntrySlashedEventWhereInput!] + newStatus_json: JSONObject + proposal: ProposalWhereInput + AND: [ProposalStatusUpdatedEventWhereInput!] + OR: [ProposalStatusUpdatedEventWhereInput!] + NOT: [ProposalStatusUpdatedEventWhereInput!] } -input WorkEntrySlashedEventWhereUniqueInput { +input ProposalStatusUpdatedEventWhereUniqueInput { id: ID! } -input WorkEntrySlashedEventCreateInput { +input ProposalStatusUpdatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - entry: ID! + proposal: ID! + newStatus: JSONObject! } -input WorkEntrySlashedEventUpdateInput { +input ProposalStatusUpdatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - entry: ID + proposal: ID + newStatus: JSONObject } -input WorkSubmittedEventWhereInput { +input ProposalVotedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8064,50 +8229,55 @@ input WorkSubmittedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - title_eq: String - title_contains: String - title_startsWith: String - title_endsWith: String - title_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - bounty: BountyWhereInput - entry: BountyEntryWhereInput - AND: [WorkSubmittedEventWhereInput!] - OR: [WorkSubmittedEventWhereInput!] - NOT: [WorkSubmittedEventWhereInput!] + voteKind_eq: ProposalVoteKind + voteKind_in: [ProposalVoteKind!] + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + votingRound_eq: Int + votingRound_gt: Int + votingRound_gte: Int + votingRound_lt: Int + votingRound_lte: Int + votingRound_in: [Int!] + voter: MembershipWhereInput + proposal: ProposalWhereInput + AND: [ProposalVotedEventWhereInput!] + OR: [ProposalVotedEventWhereInput!] + NOT: [ProposalVotedEventWhereInput!] } -input WorkSubmittedEventWhereUniqueInput { +input ProposalVotedEventWhereUniqueInput { id: ID! } -input WorkSubmittedEventCreateInput { +input ProposalVotedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - bounty: ID! - entry: ID! - title: String - description: String + voter: ID! + voteKind: ProposalVoteKind! + proposal: ID! + rationale: String! + votingRound: Float! } -input WorkSubmittedEventUpdateInput { +input ProposalVotedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - bounty: ID - entry: ID - title: String - description: String + voter: ID + voteKind: ProposalVoteKind + proposal: ID + rationale: String + votingRound: Float } -input WorkEntrantFundsWithdrawnEventWhereInput { +input ProposalCancelledEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8151,100 +8321,33 @@ input WorkEntrantFundsWithdrawnEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - entry: BountyEntryWhereInput - AND: [WorkEntrantFundsWithdrawnEventWhereInput!] - OR: [WorkEntrantFundsWithdrawnEventWhereInput!] - NOT: [WorkEntrantFundsWithdrawnEventWhereInput!] + proposal: ProposalWhereInput + AND: [ProposalCancelledEventWhereInput!] + OR: [ProposalCancelledEventWhereInput!] + NOT: [ProposalCancelledEventWhereInput!] } -input WorkEntrantFundsWithdrawnEventWhereUniqueInput { +input ProposalCancelledEventWhereUniqueInput { id: ID! } -input WorkEntrantFundsWithdrawnEventCreateInput { +input ProposalCancelledEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - entry: ID! + proposal: ID! } -input WorkEntrantFundsWithdrawnEventUpdateInput { +input ProposalCancelledEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - entry: ID + proposal: ID } -input BountyEntryWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - stakingAccount_eq: String - stakingAccount_contains: String - stakingAccount_startsWith: String - stakingAccount_endsWith: String - stakingAccount_in: [String!] - workSubmitted_eq: Boolean - workSubmitted_in: [Boolean!] - status_json: JSONObject - bounty: BountyWhereInput - worker: MembershipWhereInput - announcedInEvent: WorkEntryAnnouncedEventWhereInput - withdrawnInEvent: WorkEntryWithdrawnEventWhereInput - slashedInEvent: WorkEntrySlashedEventWhereInput - works_none: WorkSubmittedEventWhereInput - works_some: WorkSubmittedEventWhereInput - works_every: WorkSubmittedEventWhereInput - cashedOutInEvent: WorkEntrantFundsWithdrawnEventWhereInput - AND: [BountyEntryWhereInput!] - OR: [BountyEntryWhereInput!] - NOT: [BountyEntryWhereInput!] -} - -input BountyEntryWhereUniqueInput { - id: ID! -} - -input BountyEntryCreateInput { - bounty: ID! - worker: ID! - stakingAccount: String - workSubmitted: Boolean! - status: JSONObject! -} - -input BountyEntryUpdateInput { - bounty: ID - worker: ID - stakingAccount: String - workSubmitted: Boolean - status: JSONObject -} - -input BountyCreatedEventWhereInput { +input ProposalDecisionMadeEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8288,33 +8391,36 @@ input BountyCreatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - bounty: BountyWhereInput - AND: [BountyCreatedEventWhereInput!] - OR: [BountyCreatedEventWhereInput!] - NOT: [BountyCreatedEventWhereInput!] + decisionStatus_json: JSONObject + proposal: ProposalWhereInput + AND: [ProposalDecisionMadeEventWhereInput!] + OR: [ProposalDecisionMadeEventWhereInput!] + NOT: [ProposalDecisionMadeEventWhereInput!] } -input BountyCreatedEventWhereUniqueInput { +input ProposalDecisionMadeEventWhereUniqueInput { id: ID! } -input BountyCreatedEventCreateInput { +input ProposalDecisionMadeEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - bounty: ID! + proposal: ID! + decisionStatus: JSONObject! } -input BountyCreatedEventUpdateInput { +input ProposalDecisionMadeEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - bounty: ID + proposal: ID + decisionStatus: JSONObject } -input BountyCanceledEventWhereInput { +input ProposalExecutedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8358,33 +8464,36 @@ input BountyCanceledEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - bounty: BountyWhereInput - AND: [BountyCanceledEventWhereInput!] - OR: [BountyCanceledEventWhereInput!] - NOT: [BountyCanceledEventWhereInput!] + executionStatus_json: JSONObject + proposal: ProposalWhereInput + AND: [ProposalExecutedEventWhereInput!] + OR: [ProposalExecutedEventWhereInput!] + NOT: [ProposalExecutedEventWhereInput!] } -input BountyCanceledEventWhereUniqueInput { +input ProposalExecutedEventWhereUniqueInput { id: ID! } -input BountyCanceledEventCreateInput { +input ProposalExecutedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - bounty: ID! + proposal: ID! + executionStatus: JSONObject! } -input BountyCanceledEventUpdateInput { +input ProposalExecutedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - bounty: ID + proposal: ID + executionStatus: JSONObject } -input BountyVetoedEventWhereInput { +input ProposalWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8409,52 +8518,107 @@ input BountyVetoedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - bounty: BountyWhereInput - AND: [BountyVetoedEventWhereInput!] - OR: [BountyVetoedEventWhereInput!] - NOT: [BountyVetoedEventWhereInput!] + title_eq: String + title_contains: String + title_startsWith: String + title_endsWith: String + title_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + details_json: JSONObject + stakingAccount_eq: String + stakingAccount_contains: String + stakingAccount_startsWith: String + stakingAccount_endsWith: String + stakingAccount_in: [String!] + exactExecutionBlock_eq: Int + exactExecutionBlock_gt: Int + exactExecutionBlock_gte: Int + exactExecutionBlock_lt: Int + exactExecutionBlock_lte: Int + exactExecutionBlock_in: [Int!] + councilApprovals_eq: Int + councilApprovals_gt: Int + councilApprovals_gte: Int + councilApprovals_lt: Int + councilApprovals_lte: Int + councilApprovals_in: [Int!] + status_json: JSONObject + isFinalized_eq: Boolean + isFinalized_in: [Boolean!] + statusSetAtBlock_eq: Int + statusSetAtBlock_gt: Int + statusSetAtBlock_gte: Int + statusSetAtBlock_lt: Int + statusSetAtBlock_lte: Int + statusSetAtBlock_in: [Int!] + statusSetAtTime_eq: DateTime + statusSetAtTime_lt: DateTime + statusSetAtTime_lte: DateTime + statusSetAtTime_gt: DateTime + statusSetAtTime_gte: DateTime + creator: MembershipWhereInput + createdInEvent: ProposalCreatedEventWhereInput + discussionThread: ProposalDiscussionThreadWhereInput + proposalStatusUpdates_none: ProposalStatusUpdatedEventWhereInput + proposalStatusUpdates_some: ProposalStatusUpdatedEventWhereInput + proposalStatusUpdates_every: ProposalStatusUpdatedEventWhereInput + votes_none: ProposalVotedEventWhereInput + votes_some: ProposalVotedEventWhereInput + votes_every: ProposalVotedEventWhereInput + tags_none: TagWhereInput + tags_some: TagWhereInput + tags_every: TagWhereInput + proposalcancelledeventproposal_none: ProposalCancelledEventWhereInput + proposalcancelledeventproposal_some: ProposalCancelledEventWhereInput + proposalcancelledeventproposal_every: ProposalCancelledEventWhereInput + proposaldecisionmadeeventproposal_none: ProposalDecisionMadeEventWhereInput + proposaldecisionmadeeventproposal_some: ProposalDecisionMadeEventWhereInput + proposaldecisionmadeeventproposal_every: ProposalDecisionMadeEventWhereInput + proposalexecutedeventproposal_none: ProposalExecutedEventWhereInput + proposalexecutedeventproposal_some: ProposalExecutedEventWhereInput + proposalexecutedeventproposal_every: ProposalExecutedEventWhereInput + AND: [ProposalWhereInput!] + OR: [ProposalWhereInput!] + NOT: [ProposalWhereInput!] } -input BountyVetoedEventWhereUniqueInput { +input ProposalWhereUniqueInput { id: ID! } -input BountyVetoedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - bounty: ID! +input ProposalCreateInput { + title: String! + description: String! + details: JSONObject! + stakingAccount: String + creator: ID! + exactExecutionBlock: Float + councilApprovals: Float! + status: JSONObject! + isFinalized: Boolean + statusSetAtBlock: Float! + statusSetAtTime: DateTime! } -input BountyVetoedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - bounty: ID +input ProposalUpdateInput { + title: String + description: String + details: JSONObject + stakingAccount: String + creator: ID + exactExecutionBlock: Float + councilApprovals: Float + status: JSONObject + isFinalized: Boolean + statusSetAtBlock: Float + statusSetAtTime: DateTime } -input BountyMaxFundingReachedEventWhereInput { +input TagWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8479,52 +8643,107 @@ input BountyMaxFundingReachedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - bounty: BountyWhereInput - AND: [BountyMaxFundingReachedEventWhereInput!] - OR: [BountyMaxFundingReachedEventWhereInput!] - NOT: [BountyMaxFundingReachedEventWhereInput!] + name_eq: String + name_contains: String + name_startsWith: String + name_endsWith: String + name_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + type_eq: String + type_contains: String + type_startsWith: String + type_endsWith: String + type_in: [String!] + visibility_eq: Boolean + visibility_in: [Boolean!] + forumThreads_none: ForumThreadWhereInput + forumThreads_some: ForumThreadWhereInput + forumThreads_every: ForumThreadWhereInput + proposals_none: ProposalWhereInput + proposals_some: ProposalWhereInput + proposals_every: ProposalWhereInput + AND: [TagWhereInput!] + OR: [TagWhereInput!] + NOT: [TagWhereInput!] } -input BountyMaxFundingReachedEventWhereUniqueInput { +input TagWhereUniqueInput { id: ID! } -input BountyMaxFundingReachedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - bounty: ID! +input TagCreateInput { + name: String! + description: String! + type: String! + visibility: Boolean! } -input BountyMaxFundingReachedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - bounty: ID +input TagUpdateInput { + name: String + description: String + type: String + visibility: Boolean } -input BountyRemovedEventWhereInput { +input BountyEntrantWhitelistWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + phantom_eq: Int + phantom_gt: Int + phantom_gte: Int + phantom_lt: Int + phantom_lte: Int + phantom_in: [Int!] + members_none: MembershipWhereInput + members_some: MembershipWhereInput + members_every: MembershipWhereInput + bountyentrantWhitelist_none: BountyWhereInput + bountyentrantWhitelist_some: BountyWhereInput + bountyentrantWhitelist_every: BountyWhereInput + AND: [BountyEntrantWhitelistWhereInput!] + OR: [BountyEntrantWhitelistWhereInput!] + NOT: [BountyEntrantWhitelistWhereInput!] +} + +input BountyEntrantWhitelistWhereUniqueInput { + id: ID! +} + +input BountyEntrantWhitelistCreateInput { + phantom: Float +} + +input BountyEntrantWhitelistUpdateInput { + phantom: Float +} + +input BountyFundedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8568,33 +8787,33 @@ input BountyRemovedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - bounty: BountyWhereInput - AND: [BountyRemovedEventWhereInput!] - OR: [BountyRemovedEventWhereInput!] - NOT: [BountyRemovedEventWhereInput!] + contribution: BountyContributionWhereInput + AND: [BountyFundedEventWhereInput!] + OR: [BountyFundedEventWhereInput!] + NOT: [BountyFundedEventWhereInput!] } -input BountyRemovedEventWhereUniqueInput { +input BountyFundedEventWhereUniqueInput { id: ID! } -input BountyRemovedEventCreateInput { +input BountyFundedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - bounty: ID! + contribution: ID! } -input BountyRemovedEventUpdateInput { +input BountyFundedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - bounty: ID + contribution: ID } -input OracleJudgmentSubmittedEventWhereInput { +input BountyFundingWithdrawalEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8638,40 +8857,98 @@ input OracleJudgmentSubmittedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - bounty: BountyWhereInput - AND: [OracleJudgmentSubmittedEventWhereInput!] - OR: [OracleJudgmentSubmittedEventWhereInput!] - NOT: [OracleJudgmentSubmittedEventWhereInput!] + contribution: BountyContributionWhereInput + AND: [BountyFundingWithdrawalEventWhereInput!] + OR: [BountyFundingWithdrawalEventWhereInput!] + NOT: [BountyFundingWithdrawalEventWhereInput!] } -input OracleJudgmentSubmittedEventWhereUniqueInput { +input BountyFundingWithdrawalEventWhereUniqueInput { id: ID! } -input OracleJudgmentSubmittedEventCreateInput { +input BountyFundingWithdrawalEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - bounty: ID! - rationale: String + contribution: ID! } -input OracleJudgmentSubmittedEventUpdateInput { +input BountyFundingWithdrawalEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float + contribution: ID +} + +input BountyContributionWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + contributorId_eq: String + contributorId_contains: String + contributorId_startsWith: String + contributorId_endsWith: String + contributorId_in: [String!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + bounty: BountyWhereInput + contributor: MembershipWhereInput + bountyFundedEvents_none: BountyFundedEventWhereInput + bountyFundedEvents_some: BountyFundedEventWhereInput + bountyFundedEvents_every: BountyFundedEventWhereInput + withdrawnInEvent: BountyFundingWithdrawalEventWhereInput + AND: [BountyContributionWhereInput!] + OR: [BountyContributionWhereInput!] + NOT: [BountyContributionWhereInput!] +} + +input BountyContributionWhereUniqueInput { + id: ID! +} + +input BountyContributionCreateInput { + bounty: ID! + contributor: ID + contributorId: String + amount: String! +} + +input BountyContributionUpdateInput { bounty: ID - rationale: String + contributor: ID + contributorId: String + amount: String } -input BountyCreatorCherryWithdrawalEventWhereInput { +input WorkEntryAnnouncedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8715,33 +8992,33 @@ input BountyCreatorCherryWithdrawalEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - bounty: BountyWhereInput - AND: [BountyCreatorCherryWithdrawalEventWhereInput!] - OR: [BountyCreatorCherryWithdrawalEventWhereInput!] - NOT: [BountyCreatorCherryWithdrawalEventWhereInput!] + entry: BountyEntryWhereInput + AND: [WorkEntryAnnouncedEventWhereInput!] + OR: [WorkEntryAnnouncedEventWhereInput!] + NOT: [WorkEntryAnnouncedEventWhereInput!] } -input BountyCreatorCherryWithdrawalEventWhereUniqueInput { +input WorkEntryAnnouncedEventWhereUniqueInput { id: ID! } -input BountyCreatorCherryWithdrawalEventCreateInput { +input WorkEntryAnnouncedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - bounty: ID! + entry: ID! } -input BountyCreatorCherryWithdrawalEventUpdateInput { +input WorkEntryAnnouncedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - bounty: ID + entry: ID } -input BountyWhereInput { +input WorkEntryWithdrawnEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8766,124 +9043,52 @@ input BountyWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - title_eq: String - title_contains: String - title_startsWith: String - title_endsWith: String - title_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - bannerImageUri_eq: String - bannerImageUri_contains: String - bannerImageUri_startsWith: String - bannerImageUri_endsWith: String - bannerImageUri_in: [String!] - cherry_eq: BigInt - cherry_gt: BigInt - cherry_gte: BigInt - cherry_lt: BigInt - cherry_lte: BigInt - cherry_in: [BigInt!] - entrantStake_eq: BigInt - entrantStake_gt: BigInt - entrantStake_gte: BigInt - entrantStake_lt: BigInt - entrantStake_lte: BigInt - entrantStake_in: [BigInt!] - fundingType_json: JSONObject - workPeriod_eq: Int - workPeriod_gt: Int - workPeriod_gte: Int - workPeriod_lt: Int - workPeriod_lte: Int - workPeriod_in: [Int!] - judgingPeriod_eq: Int - judgingPeriod_gt: Int - judgingPeriod_gte: Int - judgingPeriod_lt: Int - judgingPeriod_lte: Int - judgingPeriod_in: [Int!] - stage_eq: BountyStage - stage_in: [BountyStage!] - totalFunding_eq: BigInt - totalFunding_gt: BigInt - totalFunding_gte: BigInt - totalFunding_lt: BigInt - totalFunding_lte: BigInt - totalFunding_in: [BigInt!] - isTerminated_eq: Boolean - isTerminated_in: [Boolean!] - creator: MembershipWhereInput - oracle: MembershipWhereInput - entrantWhitelist: BountyEntrantWhitelistWhereInput - discussionThread: ForumThreadWhereInput - contributions_none: BountyContributionWhereInput - contributions_some: BountyContributionWhereInput - contributions_every: BountyContributionWhereInput - entries_none: BountyEntryWhereInput - entries_some: BountyEntryWhereInput - entries_every: BountyEntryWhereInput - createdInEvent: BountyCreatedEventWhereInput - canceledEvent: BountyCanceledEventWhereInput - vetoedEvent: BountyVetoedEventWhereInput - maxFundingReachedEvent: BountyMaxFundingReachedEventWhereInput - removedInEvent: BountyRemovedEventWhereInput - judgment: OracleJudgmentSubmittedEventWhereInput - bountycreatorcherrywithdrawaleventbounty_none: BountyCreatorCherryWithdrawalEventWhereInput - bountycreatorcherrywithdrawaleventbounty_some: BountyCreatorCherryWithdrawalEventWhereInput - bountycreatorcherrywithdrawaleventbounty_every: BountyCreatorCherryWithdrawalEventWhereInput - worksubmittedeventbounty_none: WorkSubmittedEventWhereInput - worksubmittedeventbounty_some: WorkSubmittedEventWhereInput - worksubmittedeventbounty_every: WorkSubmittedEventWhereInput - AND: [BountyWhereInput!] - OR: [BountyWhereInput!] - NOT: [BountyWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + entry: BountyEntryWhereInput + AND: [WorkEntryWithdrawnEventWhereInput!] + OR: [WorkEntryWithdrawnEventWhereInput!] + NOT: [WorkEntryWithdrawnEventWhereInput!] } -input BountyWhereUniqueInput { +input WorkEntryWithdrawnEventWhereUniqueInput { id: ID! } -input BountyCreateInput { - title: String - description: String - bannerImageUri: String - cherry: String! - entrantStake: String! - creator: ID - oracle: ID - fundingType: JSONObject! - entrantWhitelist: ID - workPeriod: Float! - judgingPeriod: Float! - stage: BountyStage! - totalFunding: String! - discussionThread: ID - isTerminated: Boolean! +input WorkEntryWithdrawnEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + entry: ID! } -input BountyUpdateInput { - title: String - description: String - bannerImageUri: String - cherry: String - entrantStake: String - creator: ID - oracle: ID - fundingType: JSONObject - entrantWhitelist: ID - workPeriod: Float - judgingPeriod: Float - stage: BountyStage - totalFunding: String - discussionThread: ID - isTerminated: Boolean +input WorkEntryWithdrawnEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + entry: ID } -input ThreadDeletedEventWhereInput { +input WorkEntrySlashedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8927,33 +9132,33 @@ input ThreadDeletedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - thread: ForumThreadWhereInput - AND: [ThreadDeletedEventWhereInput!] - OR: [ThreadDeletedEventWhereInput!] - NOT: [ThreadDeletedEventWhereInput!] + entry: BountyEntryWhereInput + AND: [WorkEntrySlashedEventWhereInput!] + OR: [WorkEntrySlashedEventWhereInput!] + NOT: [WorkEntrySlashedEventWhereInput!] } -input ThreadDeletedEventWhereUniqueInput { +input WorkEntrySlashedEventWhereUniqueInput { id: ID! } -input ThreadDeletedEventCreateInput { +input WorkEntrySlashedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - thread: ID! + entry: ID! } -input ThreadDeletedEventUpdateInput { +input WorkEntrySlashedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - thread: ID + entry: ID } -input ThreadModeratedEventWhereInput { +input WorkSubmittedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -8997,43 +9202,50 @@ input ThreadModeratedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - thread: ForumThreadWhereInput - actor: WorkerWhereInput - AND: [ThreadModeratedEventWhereInput!] - OR: [ThreadModeratedEventWhereInput!] - NOT: [ThreadModeratedEventWhereInput!] + title_eq: String + title_contains: String + title_startsWith: String + title_endsWith: String + title_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + bounty: BountyWhereInput + entry: BountyEntryWhereInput + AND: [WorkSubmittedEventWhereInput!] + OR: [WorkSubmittedEventWhereInput!] + NOT: [WorkSubmittedEventWhereInput!] } -input ThreadModeratedEventWhereUniqueInput { +input WorkSubmittedEventWhereUniqueInput { id: ID! } -input ThreadModeratedEventCreateInput { +input WorkSubmittedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - thread: ID! - rationale: String! - actor: ID! + bounty: ID! + entry: ID! + title: String + description: String } -input ThreadModeratedEventUpdateInput { +input WorkSubmittedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - thread: ID - rationale: String - actor: ID + bounty: ID + entry: ID + title: String + description: String } -input ForumThreadWhereInput { +input WorkEntrantFundsWithdrawnEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9058,82 +9270,119 @@ input ForumThreadWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - title_eq: String - title_contains: String - title_startsWith: String - title_endsWith: String - title_in: [String!] - visiblePostsCount_eq: Int - visiblePostsCount_gt: Int - visiblePostsCount_gte: Int - visiblePostsCount_lt: Int - visiblePostsCount_lte: Int - visiblePostsCount_in: [Int!] - isSticky_eq: Boolean - isSticky_in: [Boolean!] - status_json: JSONObject - isVisible_eq: Boolean - isVisible_in: [Boolean!] - author: MembershipWhereInput - category: ForumCategoryWhereInput - posts_none: ForumPostWhereInput - posts_some: ForumPostWhereInput - posts_every: ForumPostWhereInput - initialPost: ForumPostWhereInput - createdInEvent: ThreadCreatedEventWhereInput - metadataUpdates_none: ThreadMetadataUpdatedEventWhereInput - metadataUpdates_some: ThreadMetadataUpdatedEventWhereInput - metadataUpdates_every: ThreadMetadataUpdatedEventWhereInput - madeStickyInEvents_none: CategoryStickyThreadUpdateEventWhereInput - madeStickyInEvents_some: CategoryStickyThreadUpdateEventWhereInput - madeStickyInEvents_every: CategoryStickyThreadUpdateEventWhereInput - movedInEvents_none: ThreadMovedEventWhereInput - movedInEvents_some: ThreadMovedEventWhereInput - movedInEvents_every: ThreadMovedEventWhereInput - tags_none: ForumThreadTagWhereInput - tags_some: ForumThreadTagWhereInput - tags_every: ForumThreadTagWhereInput - bountydiscussionThread_none: BountyWhereInput - bountydiscussionThread_some: BountyWhereInput - bountydiscussionThread_every: BountyWhereInput - threaddeletedeventthread_none: ThreadDeletedEventWhereInput - threaddeletedeventthread_some: ThreadDeletedEventWhereInput - threaddeletedeventthread_every: ThreadDeletedEventWhereInput - threadmoderatedeventthread_none: ThreadModeratedEventWhereInput - threadmoderatedeventthread_some: ThreadModeratedEventWhereInput - threadmoderatedeventthread_every: ThreadModeratedEventWhereInput - AND: [ForumThreadWhereInput!] - OR: [ForumThreadWhereInput!] - NOT: [ForumThreadWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + entry: BountyEntryWhereInput + AND: [WorkEntrantFundsWithdrawnEventWhereInput!] + OR: [WorkEntrantFundsWithdrawnEventWhereInput!] + NOT: [WorkEntrantFundsWithdrawnEventWhereInput!] } -input ForumThreadWhereUniqueInput { +input WorkEntrantFundsWithdrawnEventWhereUniqueInput { id: ID! } -input ForumThreadCreateInput { - author: ID! - category: ID! - title: String! - initialPost: ID - visiblePostsCount: Float! - isSticky: Boolean! +input WorkEntrantFundsWithdrawnEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + entry: ID! +} + +input WorkEntrantFundsWithdrawnEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + entry: ID +} + +input BountyEntryWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + stakingAccount_eq: String + stakingAccount_contains: String + stakingAccount_startsWith: String + stakingAccount_endsWith: String + stakingAccount_in: [String!] + workSubmitted_eq: Boolean + workSubmitted_in: [Boolean!] + status_json: JSONObject + bounty: BountyWhereInput + worker: MembershipWhereInput + announcedInEvent: WorkEntryAnnouncedEventWhereInput + withdrawnInEvent: WorkEntryWithdrawnEventWhereInput + slashedInEvent: WorkEntrySlashedEventWhereInput + works_none: WorkSubmittedEventWhereInput + works_some: WorkSubmittedEventWhereInput + works_every: WorkSubmittedEventWhereInput + cashedOutInEvent: WorkEntrantFundsWithdrawnEventWhereInput + AND: [BountyEntryWhereInput!] + OR: [BountyEntryWhereInput!] + NOT: [BountyEntryWhereInput!] +} + +input BountyEntryWhereUniqueInput { + id: ID! +} + +input BountyEntryCreateInput { + bounty: ID! + worker: ID! + stakingAccount: String + workSubmitted: Boolean! status: JSONObject! - isVisible: Boolean! } -input ForumThreadUpdateInput { - author: ID - category: ID - title: String - initialPost: ID - visiblePostsCount: Float - isSticky: Boolean +input BountyEntryUpdateInput { + bounty: ID + worker: ID + stakingAccount: String + workSubmitted: Boolean status: JSONObject - isVisible: Boolean } -input CategoryCreatedEventWhereInput { +input BountyCreatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9177,33 +9426,33 @@ input CategoryCreatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - category: ForumCategoryWhereInput - AND: [CategoryCreatedEventWhereInput!] - OR: [CategoryCreatedEventWhereInput!] - NOT: [CategoryCreatedEventWhereInput!] + bounty: BountyWhereInput + AND: [BountyCreatedEventWhereInput!] + OR: [BountyCreatedEventWhereInput!] + NOT: [BountyCreatedEventWhereInput!] } -input CategoryCreatedEventWhereUniqueInput { +input BountyCreatedEventWhereUniqueInput { id: ID! } -input CategoryCreatedEventCreateInput { +input BountyCreatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - category: ID! + bounty: ID! } -input CategoryCreatedEventUpdateInput { +input BountyCreatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - category: ID + bounty: ID } -input CategoryArchivalStatusUpdatedEventWhereInput { +input BountyCanceledEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9247,40 +9496,33 @@ input CategoryArchivalStatusUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newArchivalStatus_eq: Boolean - newArchivalStatus_in: [Boolean!] - category: ForumCategoryWhereInput - actor: WorkerWhereInput - AND: [CategoryArchivalStatusUpdatedEventWhereInput!] - OR: [CategoryArchivalStatusUpdatedEventWhereInput!] - NOT: [CategoryArchivalStatusUpdatedEventWhereInput!] + bounty: BountyWhereInput + AND: [BountyCanceledEventWhereInput!] + OR: [BountyCanceledEventWhereInput!] + NOT: [BountyCanceledEventWhereInput!] } -input CategoryArchivalStatusUpdatedEventWhereUniqueInput { +input BountyCanceledEventWhereUniqueInput { id: ID! } -input CategoryArchivalStatusUpdatedEventCreateInput { +input BountyCanceledEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - category: ID! - newArchivalStatus: Boolean! - actor: ID! + bounty: ID! } -input CategoryArchivalStatusUpdatedEventUpdateInput { +input BountyCanceledEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - category: ID - newArchivalStatus: Boolean - actor: ID + bounty: ID } -input CategoryDeletedEventWhereInput { +input BountyVetoedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9324,36 +9566,33 @@ input CategoryDeletedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - category: ForumCategoryWhereInput - actor: WorkerWhereInput - AND: [CategoryDeletedEventWhereInput!] - OR: [CategoryDeletedEventWhereInput!] - NOT: [CategoryDeletedEventWhereInput!] + bounty: BountyWhereInput + AND: [BountyVetoedEventWhereInput!] + OR: [BountyVetoedEventWhereInput!] + NOT: [BountyVetoedEventWhereInput!] } -input CategoryDeletedEventWhereUniqueInput { +input BountyVetoedEventWhereUniqueInput { id: ID! } -input CategoryDeletedEventCreateInput { +input BountyVetoedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - category: ID! - actor: ID! + bounty: ID! } -input CategoryDeletedEventUpdateInput { +input BountyVetoedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - category: ID - actor: ID + bounty: ID } -input CategoryMembershipOfModeratorUpdatedEventWhereInput { +input BountyMaxFundingReachedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9397,40 +9636,33 @@ input CategoryMembershipOfModeratorUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newCanModerateValue_eq: Boolean - newCanModerateValue_in: [Boolean!] - moderator: WorkerWhereInput - category: ForumCategoryWhereInput - AND: [CategoryMembershipOfModeratorUpdatedEventWhereInput!] - OR: [CategoryMembershipOfModeratorUpdatedEventWhereInput!] - NOT: [CategoryMembershipOfModeratorUpdatedEventWhereInput!] + bounty: BountyWhereInput + AND: [BountyMaxFundingReachedEventWhereInput!] + OR: [BountyMaxFundingReachedEventWhereInput!] + NOT: [BountyMaxFundingReachedEventWhereInput!] } -input CategoryMembershipOfModeratorUpdatedEventWhereUniqueInput { +input BountyMaxFundingReachedEventWhereUniqueInput { id: ID! } -input CategoryMembershipOfModeratorUpdatedEventCreateInput { +input BountyMaxFundingReachedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - moderator: ID! - category: ID! - newCanModerateValue: Boolean! + bounty: ID! } -input CategoryMembershipOfModeratorUpdatedEventUpdateInput { +input BountyMaxFundingReachedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - moderator: ID - category: ID - newCanModerateValue: Boolean + bounty: ID } -input ForumCategoryWhereInput { +input BountyRemovedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9455,70 +9687,52 @@ input ForumCategoryWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - title_eq: String - title_contains: String - title_startsWith: String - title_endsWith: String - title_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - status_json: JSONObject - parent: ForumCategoryWhereInput - threads_none: ForumThreadWhereInput - threads_some: ForumThreadWhereInput - threads_every: ForumThreadWhereInput - moderators_none: WorkerWhereInput - moderators_some: WorkerWhereInput - moderators_every: WorkerWhereInput - createdInEvent: CategoryCreatedEventWhereInput - categoryarchivalstatusupdatedeventcategory_none: CategoryArchivalStatusUpdatedEventWhereInput - categoryarchivalstatusupdatedeventcategory_some: CategoryArchivalStatusUpdatedEventWhereInput - categoryarchivalstatusupdatedeventcategory_every: CategoryArchivalStatusUpdatedEventWhereInput - categorydeletedeventcategory_none: CategoryDeletedEventWhereInput - categorydeletedeventcategory_some: CategoryDeletedEventWhereInput - categorydeletedeventcategory_every: CategoryDeletedEventWhereInput - categorymembershipofmoderatorupdatedeventcategory_none: CategoryMembershipOfModeratorUpdatedEventWhereInput - categorymembershipofmoderatorupdatedeventcategory_some: CategoryMembershipOfModeratorUpdatedEventWhereInput - categorymembershipofmoderatorupdatedeventcategory_every: CategoryMembershipOfModeratorUpdatedEventWhereInput - categorystickythreadupdateeventcategory_none: CategoryStickyThreadUpdateEventWhereInput - categorystickythreadupdateeventcategory_some: CategoryStickyThreadUpdateEventWhereInput - categorystickythreadupdateeventcategory_every: CategoryStickyThreadUpdateEventWhereInput - forumcategoryparent_none: ForumCategoryWhereInput - forumcategoryparent_some: ForumCategoryWhereInput - forumcategoryparent_every: ForumCategoryWhereInput - threadmovedeventoldCategory_none: ThreadMovedEventWhereInput - threadmovedeventoldCategory_some: ThreadMovedEventWhereInput - threadmovedeventoldCategory_every: ThreadMovedEventWhereInput - threadmovedeventnewCategory_none: ThreadMovedEventWhereInput - threadmovedeventnewCategory_some: ThreadMovedEventWhereInput - threadmovedeventnewCategory_every: ThreadMovedEventWhereInput - AND: [ForumCategoryWhereInput!] - OR: [ForumCategoryWhereInput!] - NOT: [ForumCategoryWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + bounty: BountyWhereInput + AND: [BountyRemovedEventWhereInput!] + OR: [BountyRemovedEventWhereInput!] + NOT: [BountyRemovedEventWhereInput!] } -input ForumCategoryWhereUniqueInput { +input BountyRemovedEventWhereUniqueInput { id: ID! } -input ForumCategoryCreateInput { - parent: ID - title: String! - description: String! - status: JSONObject! +input BountyRemovedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + bounty: ID! } -input ForumCategoryUpdateInput { - parent: ID - title: String - description: String - status: JSONObject +input BountyRemovedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + bounty: ID } -input LeaderSetEventWhereInput { +input OracleJudgmentSubmittedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9562,36 +9776,40 @@ input LeaderSetEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - group: WorkingGroupWhereInput - worker: WorkerWhereInput - AND: [LeaderSetEventWhereInput!] - OR: [LeaderSetEventWhereInput!] - NOT: [LeaderSetEventWhereInput!] + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + bounty: BountyWhereInput + AND: [OracleJudgmentSubmittedEventWhereInput!] + OR: [OracleJudgmentSubmittedEventWhereInput!] + NOT: [OracleJudgmentSubmittedEventWhereInput!] } -input LeaderSetEventWhereUniqueInput { +input OracleJudgmentSubmittedEventWhereUniqueInput { id: ID! } -input LeaderSetEventCreateInput { +input OracleJudgmentSubmittedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - group: ID! - worker: ID + bounty: ID! + rationale: String } -input LeaderSetEventUpdateInput { +input OracleJudgmentSubmittedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - group: ID - worker: ID + bounty: ID + rationale: String } -input LeaderUnsetEventWhereInput { +input BountyCreatorCherryWithdrawalEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9635,36 +9853,175 @@ input LeaderUnsetEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - group: WorkingGroupWhereInput - leader: WorkerWhereInput - AND: [LeaderUnsetEventWhereInput!] - OR: [LeaderUnsetEventWhereInput!] - NOT: [LeaderUnsetEventWhereInput!] + bounty: BountyWhereInput + AND: [BountyCreatorCherryWithdrawalEventWhereInput!] + OR: [BountyCreatorCherryWithdrawalEventWhereInput!] + NOT: [BountyCreatorCherryWithdrawalEventWhereInput!] } -input LeaderUnsetEventWhereUniqueInput { +input BountyCreatorCherryWithdrawalEventWhereUniqueInput { id: ID! } -input LeaderUnsetEventCreateInput { +input BountyCreatorCherryWithdrawalEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - group: ID! - leader: ID! + bounty: ID! } -input LeaderUnsetEventUpdateInput { +input BountyCreatorCherryWithdrawalEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - group: ID - leader: ID + bounty: ID } -input MemberVerificationStatusUpdatedEventWhereInput { +input BountyWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + title_eq: String + title_contains: String + title_startsWith: String + title_endsWith: String + title_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + bannerImageUri_eq: String + bannerImageUri_contains: String + bannerImageUri_startsWith: String + bannerImageUri_endsWith: String + bannerImageUri_in: [String!] + cherry_eq: BigInt + cherry_gt: BigInt + cherry_gte: BigInt + cherry_lt: BigInt + cherry_lte: BigInt + cherry_in: [BigInt!] + entrantStake_eq: BigInt + entrantStake_gt: BigInt + entrantStake_gte: BigInt + entrantStake_lt: BigInt + entrantStake_lte: BigInt + entrantStake_in: [BigInt!] + fundingType_json: JSONObject + workPeriod_eq: Int + workPeriod_gt: Int + workPeriod_gte: Int + workPeriod_lt: Int + workPeriod_lte: Int + workPeriod_in: [Int!] + judgingPeriod_eq: Int + judgingPeriod_gt: Int + judgingPeriod_gte: Int + judgingPeriod_lt: Int + judgingPeriod_lte: Int + judgingPeriod_in: [Int!] + stage_eq: BountyStage + stage_in: [BountyStage!] + totalFunding_eq: BigInt + totalFunding_gt: BigInt + totalFunding_gte: BigInt + totalFunding_lt: BigInt + totalFunding_lte: BigInt + totalFunding_in: [BigInt!] + isTerminated_eq: Boolean + isTerminated_in: [Boolean!] + creator: MembershipWhereInput + oracle: MembershipWhereInput + entrantWhitelist: BountyEntrantWhitelistWhereInput + discussionThread: ForumThreadWhereInput + contributions_none: BountyContributionWhereInput + contributions_some: BountyContributionWhereInput + contributions_every: BountyContributionWhereInput + entries_none: BountyEntryWhereInput + entries_some: BountyEntryWhereInput + entries_every: BountyEntryWhereInput + createdInEvent: BountyCreatedEventWhereInput + canceledEvent: BountyCanceledEventWhereInput + vetoedEvent: BountyVetoedEventWhereInput + maxFundingReachedEvent: BountyMaxFundingReachedEventWhereInput + removedInEvent: BountyRemovedEventWhereInput + judgment: OracleJudgmentSubmittedEventWhereInput + bountycreatorcherrywithdrawaleventbounty_none: BountyCreatorCherryWithdrawalEventWhereInput + bountycreatorcherrywithdrawaleventbounty_some: BountyCreatorCherryWithdrawalEventWhereInput + bountycreatorcherrywithdrawaleventbounty_every: BountyCreatorCherryWithdrawalEventWhereInput + worksubmittedeventbounty_none: WorkSubmittedEventWhereInput + worksubmittedeventbounty_some: WorkSubmittedEventWhereInput + worksubmittedeventbounty_every: WorkSubmittedEventWhereInput + AND: [BountyWhereInput!] + OR: [BountyWhereInput!] + NOT: [BountyWhereInput!] +} + +input BountyWhereUniqueInput { + id: ID! +} + +input BountyCreateInput { + title: String + description: String + bannerImageUri: String + cherry: String! + entrantStake: String! + creator: ID + oracle: ID + fundingType: JSONObject! + entrantWhitelist: ID + workPeriod: Float! + judgingPeriod: Float! + stage: BountyStage! + totalFunding: String! + discussionThread: ID + isTerminated: Boolean! +} + +input BountyUpdateInput { + title: String + description: String + bannerImageUri: String + cherry: String + entrantStake: String + creator: ID + oracle: ID + fundingType: JSONObject + entrantWhitelist: ID + workPeriod: Float + judgingPeriod: Float + stage: BountyStage + totalFunding: String + discussionThread: ID + isTerminated: Boolean +} + +input ThreadDeletedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9708,40 +10065,33 @@ input MemberVerificationStatusUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - isVerified_eq: Boolean - isVerified_in: [Boolean!] - member: MembershipWhereInput - worker: WorkerWhereInput - AND: [MemberVerificationStatusUpdatedEventWhereInput!] - OR: [MemberVerificationStatusUpdatedEventWhereInput!] - NOT: [MemberVerificationStatusUpdatedEventWhereInput!] + thread: ForumThreadWhereInput + AND: [ThreadDeletedEventWhereInput!] + OR: [ThreadDeletedEventWhereInput!] + NOT: [ThreadDeletedEventWhereInput!] } -input MemberVerificationStatusUpdatedEventWhereUniqueInput { +input ThreadDeletedEventWhereUniqueInput { id: ID! } -input MemberVerificationStatusUpdatedEventCreateInput { +input ThreadDeletedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - member: ID! - worker: ID! - isVerified: Boolean! + thread: ID! } -input MemberVerificationStatusUpdatedEventUpdateInput { +input ThreadDeletedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - member: ID - worker: ID - isVerified: Boolean + thread: ID } -input NewMissedRewardLevelReachedEventWhereInput { +input ThreadModeratedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9785,44 +10135,146 @@ input NewMissedRewardLevelReachedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newMissedRewardAmount_eq: BigInt - newMissedRewardAmount_gt: BigInt - newMissedRewardAmount_gte: BigInt - newMissedRewardAmount_lt: BigInt - newMissedRewardAmount_lte: BigInt - newMissedRewardAmount_in: [BigInt!] - group: WorkingGroupWhereInput - worker: WorkerWhereInput - AND: [NewMissedRewardLevelReachedEventWhereInput!] - OR: [NewMissedRewardLevelReachedEventWhereInput!] - NOT: [NewMissedRewardLevelReachedEventWhereInput!] -} + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + thread: ForumThreadWhereInput + actor: WorkerWhereInput + AND: [ThreadModeratedEventWhereInput!] + OR: [ThreadModeratedEventWhereInput!] + NOT: [ThreadModeratedEventWhereInput!] +} -input NewMissedRewardLevelReachedEventWhereUniqueInput { +input ThreadModeratedEventWhereUniqueInput { id: ID! } -input NewMissedRewardLevelReachedEventCreateInput { +input ThreadModeratedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - group: ID! - worker: ID! - newMissedRewardAmount: String! + thread: ID! + rationale: String! + actor: ID! } -input NewMissedRewardLevelReachedEventUpdateInput { +input ThreadModeratedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - group: ID - worker: ID - newMissedRewardAmount: String + thread: ID + rationale: String + actor: ID } -input StakeDecreasedEventWhereInput { +input ForumThreadWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + title_eq: String + title_contains: String + title_startsWith: String + title_endsWith: String + title_in: [String!] + visiblePostsCount_eq: Int + visiblePostsCount_gt: Int + visiblePostsCount_gte: Int + visiblePostsCount_lt: Int + visiblePostsCount_lte: Int + visiblePostsCount_in: [Int!] + isSticky_eq: Boolean + isSticky_in: [Boolean!] + status_json: JSONObject + isVisible_eq: Boolean + isVisible_in: [Boolean!] + author: MembershipWhereInput + category: ForumCategoryWhereInput + posts_none: ForumPostWhereInput + posts_some: ForumPostWhereInput + posts_every: ForumPostWhereInput + initialPost: ForumPostWhereInput + createdInEvent: ThreadCreatedEventWhereInput + metadataUpdates_none: ThreadMetadataUpdatedEventWhereInput + metadataUpdates_some: ThreadMetadataUpdatedEventWhereInput + metadataUpdates_every: ThreadMetadataUpdatedEventWhereInput + madeStickyInEvents_none: CategoryStickyThreadUpdateEventWhereInput + madeStickyInEvents_some: CategoryStickyThreadUpdateEventWhereInput + madeStickyInEvents_every: CategoryStickyThreadUpdateEventWhereInput + movedInEvents_none: ThreadMovedEventWhereInput + movedInEvents_some: ThreadMovedEventWhereInput + movedInEvents_every: ThreadMovedEventWhereInput + tags_none: ForumThreadTagWhereInput + tags_some: ForumThreadTagWhereInput + tags_every: ForumThreadTagWhereInput + newTags_none: TagWhereInput + newTags_some: TagWhereInput + newTags_every: TagWhereInput + bountydiscussionThread_none: BountyWhereInput + bountydiscussionThread_some: BountyWhereInput + bountydiscussionThread_every: BountyWhereInput + threaddeletedeventthread_none: ThreadDeletedEventWhereInput + threaddeletedeventthread_some: ThreadDeletedEventWhereInput + threaddeletedeventthread_every: ThreadDeletedEventWhereInput + threadmoderatedeventthread_none: ThreadModeratedEventWhereInput + threadmoderatedeventthread_some: ThreadModeratedEventWhereInput + threadmoderatedeventthread_every: ThreadModeratedEventWhereInput + AND: [ForumThreadWhereInput!] + OR: [ForumThreadWhereInput!] + NOT: [ForumThreadWhereInput!] +} + +input ForumThreadWhereUniqueInput { + id: ID! +} + +input ForumThreadCreateInput { + author: ID! + category: ID! + title: String! + initialPost: ID + visiblePostsCount: Float! + isSticky: Boolean! + status: JSONObject! + isVisible: Boolean! +} + +input ForumThreadUpdateInput { + author: ID + category: ID + title: String + initialPost: ID + visiblePostsCount: Float + isSticky: Boolean + status: JSONObject + isVisible: Boolean +} + +input CategoryCreatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9866,44 +10318,33 @@ input StakeDecreasedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - group: WorkingGroupWhereInput - worker: WorkerWhereInput - AND: [StakeDecreasedEventWhereInput!] - OR: [StakeDecreasedEventWhereInput!] - NOT: [StakeDecreasedEventWhereInput!] + category: ForumCategoryWhereInput + AND: [CategoryCreatedEventWhereInput!] + OR: [CategoryCreatedEventWhereInput!] + NOT: [CategoryCreatedEventWhereInput!] } -input StakeDecreasedEventWhereUniqueInput { +input CategoryCreatedEventWhereUniqueInput { id: ID! } -input StakeDecreasedEventCreateInput { +input CategoryCreatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - group: ID! - worker: ID! - amount: String! + category: ID! } -input StakeDecreasedEventUpdateInput { +input CategoryCreatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - group: ID - worker: ID - amount: String + category: ID } -input StakeIncreasedEventWhereInput { +input CategoryArchivalStatusUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -9947,44 +10388,40 @@ input StakeIncreasedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - group: WorkingGroupWhereInput - worker: WorkerWhereInput - AND: [StakeIncreasedEventWhereInput!] - OR: [StakeIncreasedEventWhereInput!] - NOT: [StakeIncreasedEventWhereInput!] + newArchivalStatus_eq: Boolean + newArchivalStatus_in: [Boolean!] + category: ForumCategoryWhereInput + actor: WorkerWhereInput + AND: [CategoryArchivalStatusUpdatedEventWhereInput!] + OR: [CategoryArchivalStatusUpdatedEventWhereInput!] + NOT: [CategoryArchivalStatusUpdatedEventWhereInput!] } -input StakeIncreasedEventWhereUniqueInput { +input CategoryArchivalStatusUpdatedEventWhereUniqueInput { id: ID! } -input StakeIncreasedEventCreateInput { +input CategoryArchivalStatusUpdatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - group: ID! - worker: ID! - amount: String! + category: ID! + newArchivalStatus: Boolean! + actor: ID! } -input StakeIncreasedEventUpdateInput { +input CategoryArchivalStatusUpdatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - group: ID - worker: ID - amount: String + category: ID + newArchivalStatus: Boolean + actor: ID } -input TerminatedLeaderEventWhereInput { +input CategoryDeletedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -10028,51 +10465,36 @@ input TerminatedLeaderEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - penalty_eq: BigInt - penalty_gt: BigInt - penalty_gte: BigInt - penalty_lt: BigInt - penalty_lte: BigInt - penalty_in: [BigInt!] - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - group: WorkingGroupWhereInput - worker: WorkerWhereInput - AND: [TerminatedLeaderEventWhereInput!] - OR: [TerminatedLeaderEventWhereInput!] - NOT: [TerminatedLeaderEventWhereInput!] + category: ForumCategoryWhereInput + actor: WorkerWhereInput + AND: [CategoryDeletedEventWhereInput!] + OR: [CategoryDeletedEventWhereInput!] + NOT: [CategoryDeletedEventWhereInput!] } -input TerminatedLeaderEventWhereUniqueInput { +input CategoryDeletedEventWhereUniqueInput { id: ID! } -input TerminatedLeaderEventCreateInput { +input CategoryDeletedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - group: ID! - worker: ID! - penalty: String - rationale: String + category: ID! + actor: ID! } -input TerminatedLeaderEventUpdateInput { +input CategoryDeletedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - group: ID - worker: ID - penalty: String - rationale: String + category: ID + actor: ID } -input TerminatedWorkerEventWhereInput { +input CategoryMembershipOfModeratorUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -10116,51 +10538,128 @@ input TerminatedWorkerEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - penalty_eq: BigInt - penalty_gt: BigInt - penalty_gte: BigInt - penalty_lt: BigInt - penalty_lte: BigInt - penalty_in: [BigInt!] - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - group: WorkingGroupWhereInput - worker: WorkerWhereInput - AND: [TerminatedWorkerEventWhereInput!] - OR: [TerminatedWorkerEventWhereInput!] - NOT: [TerminatedWorkerEventWhereInput!] + newCanModerateValue_eq: Boolean + newCanModerateValue_in: [Boolean!] + moderator: WorkerWhereInput + category: ForumCategoryWhereInput + AND: [CategoryMembershipOfModeratorUpdatedEventWhereInput!] + OR: [CategoryMembershipOfModeratorUpdatedEventWhereInput!] + NOT: [CategoryMembershipOfModeratorUpdatedEventWhereInput!] } -input TerminatedWorkerEventWhereUniqueInput { +input CategoryMembershipOfModeratorUpdatedEventWhereUniqueInput { id: ID! } -input TerminatedWorkerEventCreateInput { +input CategoryMembershipOfModeratorUpdatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - group: ID! - worker: ID! - penalty: String - rationale: String + moderator: ID! + category: ID! + newCanModerateValue: Boolean! } -input TerminatedWorkerEventUpdateInput { +input CategoryMembershipOfModeratorUpdatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - group: ID - worker: ID - penalty: String - rationale: String + moderator: ID + category: ID + newCanModerateValue: Boolean } -input WorkerExitedEventWhereInput { +input ForumCategoryWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + title_eq: String + title_contains: String + title_startsWith: String + title_endsWith: String + title_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + status_json: JSONObject + parent: ForumCategoryWhereInput + threads_none: ForumThreadWhereInput + threads_some: ForumThreadWhereInput + threads_every: ForumThreadWhereInput + moderators_none: WorkerWhereInput + moderators_some: WorkerWhereInput + moderators_every: WorkerWhereInput + createdInEvent: CategoryCreatedEventWhereInput + categoryarchivalstatusupdatedeventcategory_none: CategoryArchivalStatusUpdatedEventWhereInput + categoryarchivalstatusupdatedeventcategory_some: CategoryArchivalStatusUpdatedEventWhereInput + categoryarchivalstatusupdatedeventcategory_every: CategoryArchivalStatusUpdatedEventWhereInput + categorydeletedeventcategory_none: CategoryDeletedEventWhereInput + categorydeletedeventcategory_some: CategoryDeletedEventWhereInput + categorydeletedeventcategory_every: CategoryDeletedEventWhereInput + categorymembershipofmoderatorupdatedeventcategory_none: CategoryMembershipOfModeratorUpdatedEventWhereInput + categorymembershipofmoderatorupdatedeventcategory_some: CategoryMembershipOfModeratorUpdatedEventWhereInput + categorymembershipofmoderatorupdatedeventcategory_every: CategoryMembershipOfModeratorUpdatedEventWhereInput + categorystickythreadupdateeventcategory_none: CategoryStickyThreadUpdateEventWhereInput + categorystickythreadupdateeventcategory_some: CategoryStickyThreadUpdateEventWhereInput + categorystickythreadupdateeventcategory_every: CategoryStickyThreadUpdateEventWhereInput + forumcategoryparent_none: ForumCategoryWhereInput + forumcategoryparent_some: ForumCategoryWhereInput + forumcategoryparent_every: ForumCategoryWhereInput + threadmovedeventoldCategory_none: ThreadMovedEventWhereInput + threadmovedeventoldCategory_some: ThreadMovedEventWhereInput + threadmovedeventoldCategory_every: ThreadMovedEventWhereInput + threadmovedeventnewCategory_none: ThreadMovedEventWhereInput + threadmovedeventnewCategory_some: ThreadMovedEventWhereInput + threadmovedeventnewCategory_every: ThreadMovedEventWhereInput + AND: [ForumCategoryWhereInput!] + OR: [ForumCategoryWhereInput!] + NOT: [ForumCategoryWhereInput!] +} + +input ForumCategoryWhereUniqueInput { + id: ID! +} + +input ForumCategoryCreateInput { + parent: ID + title: String! + description: String! + status: JSONObject! +} + +input ForumCategoryUpdateInput { + parent: ID + title: String + description: String + status: JSONObject +} + +input LeaderSetEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -10206,25 +10705,25 @@ input WorkerExitedEventWhereInput { indexInBlock_in: [Int!] group: WorkingGroupWhereInput worker: WorkerWhereInput - AND: [WorkerExitedEventWhereInput!] - OR: [WorkerExitedEventWhereInput!] - NOT: [WorkerExitedEventWhereInput!] + AND: [LeaderSetEventWhereInput!] + OR: [LeaderSetEventWhereInput!] + NOT: [LeaderSetEventWhereInput!] } -input WorkerExitedEventWhereUniqueInput { +input LeaderSetEventWhereUniqueInput { id: ID! } -input WorkerExitedEventCreateInput { +input LeaderSetEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! group: ID! - worker: ID! + worker: ID } -input WorkerExitedEventUpdateInput { +input LeaderSetEventUpdateInput { inExtrinsic: String inBlock: Float network: Network @@ -10233,7 +10732,7 @@ input WorkerExitedEventUpdateInput { worker: ID } -input WorkerRewardAccountUpdatedEventWhereInput { +input LeaderUnsetEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -10277,43 +10776,36 @@ input WorkerRewardAccountUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newRewardAccount_eq: String - newRewardAccount_contains: String - newRewardAccount_startsWith: String - newRewardAccount_endsWith: String - newRewardAccount_in: [String!] group: WorkingGroupWhereInput - worker: WorkerWhereInput - AND: [WorkerRewardAccountUpdatedEventWhereInput!] - OR: [WorkerRewardAccountUpdatedEventWhereInput!] - NOT: [WorkerRewardAccountUpdatedEventWhereInput!] + leader: WorkerWhereInput + AND: [LeaderUnsetEventWhereInput!] + OR: [LeaderUnsetEventWhereInput!] + NOT: [LeaderUnsetEventWhereInput!] } -input WorkerRewardAccountUpdatedEventWhereUniqueInput { +input LeaderUnsetEventWhereUniqueInput { id: ID! } -input WorkerRewardAccountUpdatedEventCreateInput { +input LeaderUnsetEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! group: ID! - worker: ID! - newRewardAccount: String! + leader: ID! } -input WorkerRewardAccountUpdatedEventUpdateInput { +input LeaderUnsetEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float group: ID - worker: ID - newRewardAccount: String + leader: ID } -input WorkerRewardAmountUpdatedEventWhereInput { +input MemberVerificationStatusUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -10357,44 +10849,40 @@ input WorkerRewardAmountUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newRewardPerBlock_eq: BigInt - newRewardPerBlock_gt: BigInt - newRewardPerBlock_gte: BigInt - newRewardPerBlock_lt: BigInt - newRewardPerBlock_lte: BigInt - newRewardPerBlock_in: [BigInt!] - group: WorkingGroupWhereInput + isVerified_eq: Boolean + isVerified_in: [Boolean!] + member: MembershipWhereInput worker: WorkerWhereInput - AND: [WorkerRewardAmountUpdatedEventWhereInput!] - OR: [WorkerRewardAmountUpdatedEventWhereInput!] - NOT: [WorkerRewardAmountUpdatedEventWhereInput!] + AND: [MemberVerificationStatusUpdatedEventWhereInput!] + OR: [MemberVerificationStatusUpdatedEventWhereInput!] + NOT: [MemberVerificationStatusUpdatedEventWhereInput!] } -input WorkerRewardAmountUpdatedEventWhereUniqueInput { +input MemberVerificationStatusUpdatedEventWhereUniqueInput { id: ID! } -input WorkerRewardAmountUpdatedEventCreateInput { +input MemberVerificationStatusUpdatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - group: ID! + member: ID! worker: ID! - newRewardPerBlock: String! + isVerified: Boolean! } -input WorkerRewardAmountUpdatedEventUpdateInput { +input MemberVerificationStatusUpdatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - group: ID + member: ID worker: ID - newRewardPerBlock: String + isVerified: Boolean } -input WorkerRoleAccountUpdatedEventWhereInput { +input NewMissedRewardLevelReachedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -10438,43 +10926,44 @@ input WorkerRoleAccountUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newRoleAccount_eq: String - newRoleAccount_contains: String - newRoleAccount_startsWith: String - newRoleAccount_endsWith: String - newRoleAccount_in: [String!] + newMissedRewardAmount_eq: BigInt + newMissedRewardAmount_gt: BigInt + newMissedRewardAmount_gte: BigInt + newMissedRewardAmount_lt: BigInt + newMissedRewardAmount_lte: BigInt + newMissedRewardAmount_in: [BigInt!] group: WorkingGroupWhereInput worker: WorkerWhereInput - AND: [WorkerRoleAccountUpdatedEventWhereInput!] - OR: [WorkerRoleAccountUpdatedEventWhereInput!] - NOT: [WorkerRoleAccountUpdatedEventWhereInput!] + AND: [NewMissedRewardLevelReachedEventWhereInput!] + OR: [NewMissedRewardLevelReachedEventWhereInput!] + NOT: [NewMissedRewardLevelReachedEventWhereInput!] } -input WorkerRoleAccountUpdatedEventWhereUniqueInput { +input NewMissedRewardLevelReachedEventWhereUniqueInput { id: ID! } -input WorkerRoleAccountUpdatedEventCreateInput { +input NewMissedRewardLevelReachedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! group: ID! worker: ID! - newRoleAccount: String! + newMissedRewardAmount: String! } -input WorkerRoleAccountUpdatedEventUpdateInput { +input NewMissedRewardLevelReachedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float group: ID worker: ID - newRoleAccount: String + newMissedRewardAmount: String } -input WorkerStartedLeavingEventWhereInput { +input StakeDecreasedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -10518,1048 +11007,44 @@ input WorkerStartedLeavingEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] group: WorkingGroupWhereInput worker: WorkerWhereInput - AND: [WorkerStartedLeavingEventWhereInput!] - OR: [WorkerStartedLeavingEventWhereInput!] - NOT: [WorkerStartedLeavingEventWhereInput!] + AND: [StakeDecreasedEventWhereInput!] + OR: [StakeDecreasedEventWhereInput!] + NOT: [StakeDecreasedEventWhereInput!] } -input WorkerStartedLeavingEventWhereUniqueInput { +input StakeDecreasedEventWhereUniqueInput { id: ID! } -input WorkerStartedLeavingEventCreateInput { +input StakeDecreasedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! group: ID! worker: ID! - rationale: String + amount: String! } -input WorkerStartedLeavingEventUpdateInput { +input StakeDecreasedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float group: ID worker: ID - rationale: String + amount: String } -input WorkerWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - runtimeId_eq: Int - runtimeId_gt: Int - runtimeId_gte: Int - runtimeId_lt: Int - runtimeId_lte: Int - runtimeId_in: [Int!] - groupId_eq: String - groupId_contains: String - groupId_startsWith: String - groupId_endsWith: String - groupId_in: [String!] - roleAccount_eq: String - roleAccount_contains: String - roleAccount_startsWith: String - roleAccount_endsWith: String - roleAccount_in: [String!] - rewardAccount_eq: String - rewardAccount_contains: String - rewardAccount_startsWith: String - rewardAccount_endsWith: String - rewardAccount_in: [String!] - stakeAccount_eq: String - stakeAccount_contains: String - stakeAccount_startsWith: String - stakeAccount_endsWith: String - stakeAccount_in: [String!] - status_json: JSONObject - isLead_eq: Boolean - isLead_in: [Boolean!] - isActive_eq: Boolean - isActive_in: [Boolean!] - stake_eq: BigInt - stake_gt: BigInt - stake_gte: BigInt - stake_lt: BigInt - stake_lte: BigInt - stake_in: [BigInt!] - rewardPerBlock_eq: BigInt - rewardPerBlock_gt: BigInt - rewardPerBlock_gte: BigInt - rewardPerBlock_lt: BigInt - rewardPerBlock_lte: BigInt - rewardPerBlock_in: [BigInt!] - missingRewardAmount_eq: BigInt - missingRewardAmount_gt: BigInt - missingRewardAmount_gte: BigInt - missingRewardAmount_lt: BigInt - missingRewardAmount_lte: BigInt - missingRewardAmount_in: [BigInt!] - storage_eq: String - storage_contains: String - storage_startsWith: String - storage_endsWith: String - storage_in: [String!] - group: WorkingGroupWhereInput - membership: MembershipWhereInput - payouts_none: RewardPaidEventWhereInput - payouts_some: RewardPaidEventWhereInput - payouts_every: RewardPaidEventWhereInput - slashes_none: StakeSlashedEventWhereInput - slashes_some: StakeSlashedEventWhereInput - slashes_every: StakeSlashedEventWhereInput - entry: OpeningFilledEventWhereInput - application: WorkingGroupApplicationWhereInput - managedForumCategories_none: ForumCategoryWhereInput - managedForumCategories_some: ForumCategoryWhereInput - managedForumCategories_every: ForumCategoryWhereInput - categoryarchivalstatusupdatedeventactor_none: CategoryArchivalStatusUpdatedEventWhereInput - categoryarchivalstatusupdatedeventactor_some: CategoryArchivalStatusUpdatedEventWhereInput - categoryarchivalstatusupdatedeventactor_every: CategoryArchivalStatusUpdatedEventWhereInput - categorydeletedeventactor_none: CategoryDeletedEventWhereInput - categorydeletedeventactor_some: CategoryDeletedEventWhereInput - categorydeletedeventactor_every: CategoryDeletedEventWhereInput - categorymembershipofmoderatorupdatedeventmoderator_none: CategoryMembershipOfModeratorUpdatedEventWhereInput - categorymembershipofmoderatorupdatedeventmoderator_some: CategoryMembershipOfModeratorUpdatedEventWhereInput - categorymembershipofmoderatorupdatedeventmoderator_every: CategoryMembershipOfModeratorUpdatedEventWhereInput - categorystickythreadupdateeventactor_none: CategoryStickyThreadUpdateEventWhereInput - categorystickythreadupdateeventactor_some: CategoryStickyThreadUpdateEventWhereInput - categorystickythreadupdateeventactor_every: CategoryStickyThreadUpdateEventWhereInput - leaderseteventworker_none: LeaderSetEventWhereInput - leaderseteventworker_some: LeaderSetEventWhereInput - leaderseteventworker_every: LeaderSetEventWhereInput - leaderunseteventleader_none: LeaderUnsetEventWhereInput - leaderunseteventleader_some: LeaderUnsetEventWhereInput - leaderunseteventleader_every: LeaderUnsetEventWhereInput - memberverificationstatusupdatedeventworker_none: MemberVerificationStatusUpdatedEventWhereInput - memberverificationstatusupdatedeventworker_some: MemberVerificationStatusUpdatedEventWhereInput - memberverificationstatusupdatedeventworker_every: MemberVerificationStatusUpdatedEventWhereInput - newmissedrewardlevelreachedeventworker_none: NewMissedRewardLevelReachedEventWhereInput - newmissedrewardlevelreachedeventworker_some: NewMissedRewardLevelReachedEventWhereInput - newmissedrewardlevelreachedeventworker_every: NewMissedRewardLevelReachedEventWhereInput - postmoderatedeventactor_none: PostModeratedEventWhereInput - postmoderatedeventactor_some: PostModeratedEventWhereInput - postmoderatedeventactor_every: PostModeratedEventWhereInput - stakedecreasedeventworker_none: StakeDecreasedEventWhereInput - stakedecreasedeventworker_some: StakeDecreasedEventWhereInput - stakedecreasedeventworker_every: StakeDecreasedEventWhereInput - stakeincreasedeventworker_none: StakeIncreasedEventWhereInput - stakeincreasedeventworker_some: StakeIncreasedEventWhereInput - stakeincreasedeventworker_every: StakeIncreasedEventWhereInput - terminatedleadereventworker_none: TerminatedLeaderEventWhereInput - terminatedleadereventworker_some: TerminatedLeaderEventWhereInput - terminatedleadereventworker_every: TerminatedLeaderEventWhereInput - terminatedworkereventworker_none: TerminatedWorkerEventWhereInput - terminatedworkereventworker_some: TerminatedWorkerEventWhereInput - terminatedworkereventworker_every: TerminatedWorkerEventWhereInput - threadmoderatedeventactor_none: ThreadModeratedEventWhereInput - threadmoderatedeventactor_some: ThreadModeratedEventWhereInput - threadmoderatedeventactor_every: ThreadModeratedEventWhereInput - threadmovedeventactor_none: ThreadMovedEventWhereInput - threadmovedeventactor_some: ThreadMovedEventWhereInput - threadmovedeventactor_every: ThreadMovedEventWhereInput - workerexitedeventworker_none: WorkerExitedEventWhereInput - workerexitedeventworker_some: WorkerExitedEventWhereInput - workerexitedeventworker_every: WorkerExitedEventWhereInput - workerrewardaccountupdatedeventworker_none: WorkerRewardAccountUpdatedEventWhereInput - workerrewardaccountupdatedeventworker_some: WorkerRewardAccountUpdatedEventWhereInput - workerrewardaccountupdatedeventworker_every: WorkerRewardAccountUpdatedEventWhereInput - workerrewardamountupdatedeventworker_none: WorkerRewardAmountUpdatedEventWhereInput - workerrewardamountupdatedeventworker_some: WorkerRewardAmountUpdatedEventWhereInput - workerrewardamountupdatedeventworker_every: WorkerRewardAmountUpdatedEventWhereInput - workerroleaccountupdatedeventworker_none: WorkerRoleAccountUpdatedEventWhereInput - workerroleaccountupdatedeventworker_some: WorkerRoleAccountUpdatedEventWhereInput - workerroleaccountupdatedeventworker_every: WorkerRoleAccountUpdatedEventWhereInput - workerstartedleavingeventworker_none: WorkerStartedLeavingEventWhereInput - workerstartedleavingeventworker_some: WorkerStartedLeavingEventWhereInput - workerstartedleavingeventworker_every: WorkerStartedLeavingEventWhereInput - workinggroupleader_none: WorkingGroupWhereInput - workinggroupleader_some: WorkingGroupWhereInput - workinggroupleader_every: WorkingGroupWhereInput - AND: [WorkerWhereInput!] - OR: [WorkerWhereInput!] - NOT: [WorkerWhereInput!] -} - -input WorkerWhereUniqueInput { - id: ID! -} - -input WorkerCreateInput { - runtimeId: Float! - group: ID! - groupId: String! - membership: ID! - roleAccount: String! - rewardAccount: String! - stakeAccount: String! - status: JSONObject! - isLead: Boolean! - isActive: Boolean! - stake: String! - rewardPerBlock: String! - missingRewardAmount: String - entry: ID! - application: ID! - storage: String -} - -input WorkerUpdateInput { - runtimeId: Float - group: ID - groupId: String - membership: ID - roleAccount: String - rewardAccount: String - stakeAccount: String - status: JSONObject - isLead: Boolean - isActive: Boolean - stake: String - rewardPerBlock: String - missingRewardAmount: String - entry: ID - application: ID - storage: String -} - -input WorkingGroupApplicationWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - runtimeId_eq: Int - runtimeId_gt: Int - runtimeId_gte: Int - runtimeId_lt: Int - runtimeId_lte: Int - runtimeId_in: [Int!] - stake_eq: BigInt - stake_gt: BigInt - stake_gte: BigInt - stake_lt: BigInt - stake_lte: BigInt - stake_in: [BigInt!] - roleAccount_eq: String - roleAccount_contains: String - roleAccount_startsWith: String - roleAccount_endsWith: String - roleAccount_in: [String!] - rewardAccount_eq: String - rewardAccount_contains: String - rewardAccount_startsWith: String - rewardAccount_endsWith: String - rewardAccount_in: [String!] - stakingAccount_eq: String - stakingAccount_contains: String - stakingAccount_startsWith: String - stakingAccount_endsWith: String - stakingAccount_in: [String!] - status_json: JSONObject - opening: WorkingGroupOpeningWhereInput - applicant: MembershipWhereInput - answers_none: ApplicationFormQuestionAnswerWhereInput - answers_some: ApplicationFormQuestionAnswerWhereInput - answers_every: ApplicationFormQuestionAnswerWhereInput - createdInEvent: AppliedOnOpeningEventWhereInput - applicationwithdrawneventapplication_none: ApplicationWithdrawnEventWhereInput - applicationwithdrawneventapplication_some: ApplicationWithdrawnEventWhereInput - applicationwithdrawneventapplication_every: ApplicationWithdrawnEventWhereInput - workerapplication_none: WorkerWhereInput - workerapplication_some: WorkerWhereInput - workerapplication_every: WorkerWhereInput - AND: [WorkingGroupApplicationWhereInput!] - OR: [WorkingGroupApplicationWhereInput!] - NOT: [WorkingGroupApplicationWhereInput!] -} - -input WorkingGroupApplicationWhereUniqueInput { - id: ID! -} - -input WorkingGroupApplicationCreateInput { - runtimeId: Float! - opening: ID! - applicant: ID! - stake: String! - roleAccount: String! - rewardAccount: String! - stakingAccount: String! - status: JSONObject! -} - -input WorkingGroupApplicationUpdateInput { - runtimeId: Float - opening: ID - applicant: ID - stake: String - roleAccount: String - rewardAccount: String - stakingAccount: String - status: JSONObject -} - -input ApplicationFormQuestionAnswerWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - answer_eq: String - answer_contains: String - answer_startsWith: String - answer_endsWith: String - answer_in: [String!] - application: WorkingGroupApplicationWhereInput - question: ApplicationFormQuestionWhereInput - AND: [ApplicationFormQuestionAnswerWhereInput!] - OR: [ApplicationFormQuestionAnswerWhereInput!] - NOT: [ApplicationFormQuestionAnswerWhereInput!] -} - -input ApplicationFormQuestionAnswerWhereUniqueInput { - id: ID! -} - -input ApplicationFormQuestionAnswerCreateInput { - application: ID! - question: ID! - answer: String! -} - -input ApplicationFormQuestionAnswerUpdateInput { - application: ID - question: ID - answer: String -} - -input ApplicationFormQuestionWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - question_eq: String - question_contains: String - question_startsWith: String - question_endsWith: String - question_in: [String!] - type_eq: ApplicationFormQuestionType - type_in: [ApplicationFormQuestionType!] - index_eq: Int - index_gt: Int - index_gte: Int - index_lt: Int - index_lte: Int - index_in: [Int!] - openingMetadata: WorkingGroupOpeningMetadataWhereInput - applicationformquestionanswerquestion_none: ApplicationFormQuestionAnswerWhereInput - applicationformquestionanswerquestion_some: ApplicationFormQuestionAnswerWhereInput - applicationformquestionanswerquestion_every: ApplicationFormQuestionAnswerWhereInput - AND: [ApplicationFormQuestionWhereInput!] - OR: [ApplicationFormQuestionWhereInput!] - NOT: [ApplicationFormQuestionWhereInput!] -} - -input ApplicationFormQuestionWhereUniqueInput { - id: ID! -} - -input ApplicationFormQuestionCreateInput { - openingMetadata: ID! - question: String - type: ApplicationFormQuestionType! - index: Float! -} - -input ApplicationFormQuestionUpdateInput { - openingMetadata: ID - question: String - type: ApplicationFormQuestionType - index: Float -} - -input WorkingGroupOpeningMetadataWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - originallyValid_eq: Boolean - originallyValid_in: [Boolean!] - title_eq: String - title_contains: String - title_startsWith: String - title_endsWith: String - title_in: [String!] - shortDescription_eq: String - shortDescription_contains: String - shortDescription_startsWith: String - shortDescription_endsWith: String - shortDescription_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - hiringLimit_eq: Int - hiringLimit_gt: Int - hiringLimit_gte: Int - hiringLimit_lt: Int - hiringLimit_lte: Int - hiringLimit_in: [Int!] - expectedEnding_eq: DateTime - expectedEnding_lt: DateTime - expectedEnding_lte: DateTime - expectedEnding_gt: DateTime - expectedEnding_gte: DateTime - applicationDetails_eq: String - applicationDetails_contains: String - applicationDetails_startsWith: String - applicationDetails_endsWith: String - applicationDetails_in: [String!] - applicationFormQuestions_none: ApplicationFormQuestionWhereInput - applicationFormQuestions_some: ApplicationFormQuestionWhereInput - applicationFormQuestions_every: ApplicationFormQuestionWhereInput - upcomingworkinggroupopeningmetadata_none: UpcomingWorkingGroupOpeningWhereInput - upcomingworkinggroupopeningmetadata_some: UpcomingWorkingGroupOpeningWhereInput - upcomingworkinggroupopeningmetadata_every: UpcomingWorkingGroupOpeningWhereInput - workinggroupopeningmetadata_none: WorkingGroupOpeningWhereInput - workinggroupopeningmetadata_some: WorkingGroupOpeningWhereInput - workinggroupopeningmetadata_every: WorkingGroupOpeningWhereInput - AND: [WorkingGroupOpeningMetadataWhereInput!] - OR: [WorkingGroupOpeningMetadataWhereInput!] - NOT: [WorkingGroupOpeningMetadataWhereInput!] -} - -input WorkingGroupOpeningMetadataWhereUniqueInput { - id: ID! -} - -input WorkingGroupOpeningMetadataCreateInput { - originallyValid: Boolean! - title: String - shortDescription: String - description: String - hiringLimit: Float - expectedEnding: DateTime - applicationDetails: String -} - -input WorkingGroupOpeningMetadataUpdateInput { - originallyValid: Boolean - title: String - shortDescription: String - description: String - hiringLimit: Float - expectedEnding: DateTime - applicationDetails: String -} - -input UpcomingWorkingGroupOpeningWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - expectedStart_eq: DateTime - expectedStart_lt: DateTime - expectedStart_lte: DateTime - expectedStart_gt: DateTime - expectedStart_gte: DateTime - stakeAmount_eq: BigInt - stakeAmount_gt: BigInt - stakeAmount_gte: BigInt - stakeAmount_lt: BigInt - stakeAmount_lte: BigInt - stakeAmount_in: [BigInt!] - rewardPerBlock_eq: BigInt - rewardPerBlock_gt: BigInt - rewardPerBlock_gte: BigInt - rewardPerBlock_lt: BigInt - rewardPerBlock_lte: BigInt - rewardPerBlock_in: [BigInt!] - createdInEvent: StatusTextChangedEventWhereInput - group: WorkingGroupWhereInput - metadata: WorkingGroupOpeningMetadataWhereInput - AND: [UpcomingWorkingGroupOpeningWhereInput!] - OR: [UpcomingWorkingGroupOpeningWhereInput!] - NOT: [UpcomingWorkingGroupOpeningWhereInput!] -} - -input UpcomingWorkingGroupOpeningWhereUniqueInput { - id: ID! -} - -input UpcomingWorkingGroupOpeningCreateInput { - createdInEvent: ID! - group: ID! - expectedStart: DateTime - stakeAmount: String - rewardPerBlock: String - metadata: ID! -} - -input UpcomingWorkingGroupOpeningUpdateInput { - createdInEvent: ID - group: ID - expectedStart: DateTime - stakeAmount: String - rewardPerBlock: String - metadata: ID -} - -input StatusTextChangedEventWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - metadata_eq: String - metadata_contains: String - metadata_startsWith: String - metadata_endsWith: String - metadata_in: [String!] - result_json: JSONObject - group: WorkingGroupWhereInput - upcomingworkinggroupopeningcreatedInEvent_none: UpcomingWorkingGroupOpeningWhereInput - upcomingworkinggroupopeningcreatedInEvent_some: UpcomingWorkingGroupOpeningWhereInput - upcomingworkinggroupopeningcreatedInEvent_every: UpcomingWorkingGroupOpeningWhereInput - workinggroupmetadatasetInEvent_none: WorkingGroupMetadataWhereInput - workinggroupmetadatasetInEvent_some: WorkingGroupMetadataWhereInput - workinggroupmetadatasetInEvent_every: WorkingGroupMetadataWhereInput - AND: [StatusTextChangedEventWhereInput!] - OR: [StatusTextChangedEventWhereInput!] - NOT: [StatusTextChangedEventWhereInput!] -} - -input StatusTextChangedEventWhereUniqueInput { - id: ID! -} - -input StatusTextChangedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - group: ID! - metadata: String - result: JSONObject! -} - -input StatusTextChangedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - group: ID - metadata: String - result: JSONObject -} - -input WorkingGroupMetadataWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - status_eq: String - status_contains: String - status_startsWith: String - status_endsWith: String - status_in: [String!] - statusMessage_eq: String - statusMessage_contains: String - statusMessage_startsWith: String - statusMessage_endsWith: String - statusMessage_in: [String!] - about_eq: String - about_contains: String - about_startsWith: String - about_endsWith: String - about_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - setInEvent: StatusTextChangedEventWhereInput - group: WorkingGroupWhereInput - workinggroupmetadata_none: WorkingGroupWhereInput - workinggroupmetadata_some: WorkingGroupWhereInput - workinggroupmetadata_every: WorkingGroupWhereInput - AND: [WorkingGroupMetadataWhereInput!] - OR: [WorkingGroupMetadataWhereInput!] - NOT: [WorkingGroupMetadataWhereInput!] -} - -input WorkingGroupMetadataWhereUniqueInput { - id: ID! -} - -input WorkingGroupMetadataCreateInput { - status: String - statusMessage: String - about: String - description: String - setInEvent: ID! - group: ID! -} - -input WorkingGroupMetadataUpdateInput { - status: String - statusMessage: String - about: String - description: String - setInEvent: ID - group: ID -} - -input BudgetFundedEventWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - group: WorkingGroupWhereInput - member: MembershipWhereInput - AND: [BudgetFundedEventWhereInput!] - OR: [BudgetFundedEventWhereInput!] - NOT: [BudgetFundedEventWhereInput!] -} - -input BudgetFundedEventWhereUniqueInput { - id: ID! -} - -input BudgetFundedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - group: ID! - member: ID! - rationale: String! - amount: String! -} - -input BudgetFundedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - group: ID - member: ID - rationale: String - amount: String -} - -input BudgetSetEventWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - newBudget_eq: BigInt - newBudget_gt: BigInt - newBudget_gte: BigInt - newBudget_lt: BigInt - newBudget_lte: BigInt - newBudget_in: [BigInt!] - group: WorkingGroupWhereInput - AND: [BudgetSetEventWhereInput!] - OR: [BudgetSetEventWhereInput!] - NOT: [BudgetSetEventWhereInput!] -} - -input BudgetSetEventWhereUniqueInput { - id: ID! -} - -input BudgetSetEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - group: ID! - newBudget: String! -} - -input BudgetSetEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - group: ID - newBudget: String -} - -input BudgetSpendingEventWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - reciever_eq: String - reciever_contains: String - reciever_startsWith: String - reciever_endsWith: String - reciever_in: [String!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - group: WorkingGroupWhereInput - AND: [BudgetSpendingEventWhereInput!] - OR: [BudgetSpendingEventWhereInput!] - NOT: [BudgetSpendingEventWhereInput!] -} - -input BudgetSpendingEventWhereUniqueInput { - id: ID! -} - -input BudgetSpendingEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - group: ID! - reciever: String! - amount: String! - rationale: String -} - -input BudgetSpendingEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - group: ID - reciever: String - amount: String - rationale: String -} - -input BudgetUpdatedEventWhereInput { +input StakeIncreasedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -11599,191 +11084,48 @@ input BudgetUpdatedEventWhereInput { network_in: [Network!] indexInBlock_eq: Int indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - budgetChangeAmount_eq: BigInt - budgetChangeAmount_gt: BigInt - budgetChangeAmount_gte: BigInt - budgetChangeAmount_lt: BigInt - budgetChangeAmount_lte: BigInt - budgetChangeAmount_in: [BigInt!] + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] group: WorkingGroupWhereInput - AND: [BudgetUpdatedEventWhereInput!] - OR: [BudgetUpdatedEventWhereInput!] - NOT: [BudgetUpdatedEventWhereInput!] + worker: WorkerWhereInput + AND: [StakeIncreasedEventWhereInput!] + OR: [StakeIncreasedEventWhereInput!] + NOT: [StakeIncreasedEventWhereInput!] } -input BudgetUpdatedEventWhereUniqueInput { +input StakeIncreasedEventWhereUniqueInput { id: ID! } -input BudgetUpdatedEventCreateInput { +input StakeIncreasedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! group: ID! - budgetChangeAmount: String! + worker: ID! + amount: String! } -input BudgetUpdatedEventUpdateInput { +input StakeIncreasedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float group: ID - budgetChangeAmount: String -} - -input WorkingGroupWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - name_eq: String - name_contains: String - name_startsWith: String - name_endsWith: String - name_in: [String!] - budget_eq: BigInt - budget_gt: BigInt - budget_gte: BigInt - budget_lt: BigInt - budget_lte: BigInt - budget_in: [BigInt!] - metadata: WorkingGroupMetadataWhereInput - leader: WorkerWhereInput - workers_none: WorkerWhereInput - workers_some: WorkerWhereInput - workers_every: WorkerWhereInput - openings_none: WorkingGroupOpeningWhereInput - openings_some: WorkingGroupOpeningWhereInput - openings_every: WorkingGroupOpeningWhereInput - applicationwithdrawneventgroup_none: ApplicationWithdrawnEventWhereInput - applicationwithdrawneventgroup_some: ApplicationWithdrawnEventWhereInput - applicationwithdrawneventgroup_every: ApplicationWithdrawnEventWhereInput - appliedonopeningeventgroup_none: AppliedOnOpeningEventWhereInput - appliedonopeningeventgroup_some: AppliedOnOpeningEventWhereInput - appliedonopeningeventgroup_every: AppliedOnOpeningEventWhereInput - budgetfundedeventgroup_none: BudgetFundedEventWhereInput - budgetfundedeventgroup_some: BudgetFundedEventWhereInput - budgetfundedeventgroup_every: BudgetFundedEventWhereInput - budgetseteventgroup_none: BudgetSetEventWhereInput - budgetseteventgroup_some: BudgetSetEventWhereInput - budgetseteventgroup_every: BudgetSetEventWhereInput - budgetspendingeventgroup_none: BudgetSpendingEventWhereInput - budgetspendingeventgroup_some: BudgetSpendingEventWhereInput - budgetspendingeventgroup_every: BudgetSpendingEventWhereInput - budgetupdatedeventgroup_none: BudgetUpdatedEventWhereInput - budgetupdatedeventgroup_some: BudgetUpdatedEventWhereInput - budgetupdatedeventgroup_every: BudgetUpdatedEventWhereInput - leaderseteventgroup_none: LeaderSetEventWhereInput - leaderseteventgroup_some: LeaderSetEventWhereInput - leaderseteventgroup_every: LeaderSetEventWhereInput - leaderunseteventgroup_none: LeaderUnsetEventWhereInput - leaderunseteventgroup_some: LeaderUnsetEventWhereInput - leaderunseteventgroup_every: LeaderUnsetEventWhereInput - newmissedrewardlevelreachedeventgroup_none: NewMissedRewardLevelReachedEventWhereInput - newmissedrewardlevelreachedeventgroup_some: NewMissedRewardLevelReachedEventWhereInput - newmissedrewardlevelreachedeventgroup_every: NewMissedRewardLevelReachedEventWhereInput - openingaddedeventgroup_none: OpeningAddedEventWhereInput - openingaddedeventgroup_some: OpeningAddedEventWhereInput - openingaddedeventgroup_every: OpeningAddedEventWhereInput - openingcanceledeventgroup_none: OpeningCanceledEventWhereInput - openingcanceledeventgroup_some: OpeningCanceledEventWhereInput - openingcanceledeventgroup_every: OpeningCanceledEventWhereInput - openingfilledeventgroup_none: OpeningFilledEventWhereInput - openingfilledeventgroup_some: OpeningFilledEventWhereInput - openingfilledeventgroup_every: OpeningFilledEventWhereInput - rewardpaideventgroup_none: RewardPaidEventWhereInput - rewardpaideventgroup_some: RewardPaidEventWhereInput - rewardpaideventgroup_every: RewardPaidEventWhereInput - stakedecreasedeventgroup_none: StakeDecreasedEventWhereInput - stakedecreasedeventgroup_some: StakeDecreasedEventWhereInput - stakedecreasedeventgroup_every: StakeDecreasedEventWhereInput - stakeincreasedeventgroup_none: StakeIncreasedEventWhereInput - stakeincreasedeventgroup_some: StakeIncreasedEventWhereInput - stakeincreasedeventgroup_every: StakeIncreasedEventWhereInput - stakeslashedeventgroup_none: StakeSlashedEventWhereInput - stakeslashedeventgroup_some: StakeSlashedEventWhereInput - stakeslashedeventgroup_every: StakeSlashedEventWhereInput - statustextchangedeventgroup_none: StatusTextChangedEventWhereInput - statustextchangedeventgroup_some: StatusTextChangedEventWhereInput - statustextchangedeventgroup_every: StatusTextChangedEventWhereInput - terminatedleadereventgroup_none: TerminatedLeaderEventWhereInput - terminatedleadereventgroup_some: TerminatedLeaderEventWhereInput - terminatedleadereventgroup_every: TerminatedLeaderEventWhereInput - terminatedworkereventgroup_none: TerminatedWorkerEventWhereInput - terminatedworkereventgroup_some: TerminatedWorkerEventWhereInput - terminatedworkereventgroup_every: TerminatedWorkerEventWhereInput - upcomingworkinggroupopeninggroup_none: UpcomingWorkingGroupOpeningWhereInput - upcomingworkinggroupopeninggroup_some: UpcomingWorkingGroupOpeningWhereInput - upcomingworkinggroupopeninggroup_every: UpcomingWorkingGroupOpeningWhereInput - workerexitedeventgroup_none: WorkerExitedEventWhereInput - workerexitedeventgroup_some: WorkerExitedEventWhereInput - workerexitedeventgroup_every: WorkerExitedEventWhereInput - workerrewardaccountupdatedeventgroup_none: WorkerRewardAccountUpdatedEventWhereInput - workerrewardaccountupdatedeventgroup_some: WorkerRewardAccountUpdatedEventWhereInput - workerrewardaccountupdatedeventgroup_every: WorkerRewardAccountUpdatedEventWhereInput - workerrewardamountupdatedeventgroup_none: WorkerRewardAmountUpdatedEventWhereInput - workerrewardamountupdatedeventgroup_some: WorkerRewardAmountUpdatedEventWhereInput - workerrewardamountupdatedeventgroup_every: WorkerRewardAmountUpdatedEventWhereInput - workerroleaccountupdatedeventgroup_none: WorkerRoleAccountUpdatedEventWhereInput - workerroleaccountupdatedeventgroup_some: WorkerRoleAccountUpdatedEventWhereInput - workerroleaccountupdatedeventgroup_every: WorkerRoleAccountUpdatedEventWhereInput - workerstartedleavingeventgroup_none: WorkerStartedLeavingEventWhereInput - workerstartedleavingeventgroup_some: WorkerStartedLeavingEventWhereInput - workerstartedleavingeventgroup_every: WorkerStartedLeavingEventWhereInput - workinggroupmetadatagroup_none: WorkingGroupMetadataWhereInput - workinggroupmetadatagroup_some: WorkingGroupMetadataWhereInput - workinggroupmetadatagroup_every: WorkingGroupMetadataWhereInput - AND: [WorkingGroupWhereInput!] - OR: [WorkingGroupWhereInput!] - NOT: [WorkingGroupWhereInput!] -} - -input WorkingGroupWhereUniqueInput { - id: ID - name: String -} - -input WorkingGroupCreateInput { - name: String! - metadata: ID - leader: ID - budget: String! -} - -input WorkingGroupUpdateInput { - name: String - metadata: ID - leader: ID - budget: String + worker: ID + amount: String } -input OpeningFilledEventWhereInput { +input TerminatedLeaderEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -11827,39 +11169,51 @@ input OpeningFilledEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] + penalty_eq: BigInt + penalty_gt: BigInt + penalty_gte: BigInt + penalty_lt: BigInt + penalty_lte: BigInt + penalty_in: [BigInt!] + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] group: WorkingGroupWhereInput - opening: WorkingGroupOpeningWhereInput - workersHired_none: WorkerWhereInput - workersHired_some: WorkerWhereInput - workersHired_every: WorkerWhereInput - AND: [OpeningFilledEventWhereInput!] - OR: [OpeningFilledEventWhereInput!] - NOT: [OpeningFilledEventWhereInput!] + worker: WorkerWhereInput + AND: [TerminatedLeaderEventWhereInput!] + OR: [TerminatedLeaderEventWhereInput!] + NOT: [TerminatedLeaderEventWhereInput!] } -input OpeningFilledEventWhereUniqueInput { +input TerminatedLeaderEventWhereUniqueInput { id: ID! } -input OpeningFilledEventCreateInput { +input TerminatedLeaderEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! group: ID! - opening: ID! + worker: ID! + penalty: String + rationale: String } -input OpeningFilledEventUpdateInput { +input TerminatedLeaderEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float group: ID - opening: ID + worker: ID + penalty: String + rationale: String } -input GeoCoordinatesWhereInput { +input TerminatedWorkerEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -11884,41 +11238,70 @@ input GeoCoordinatesWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - latitude_eq: Float - latitude_gt: Float - latitude_gte: Float - latitude_lt: Float - latitude_lte: Float - latitude_in: [Float!] - longitude_eq: Float - longitude_gt: Float - longitude_gte: Float - longitude_lt: Float - longitude_lte: Float - longitude_in: [Float!] - nodelocationmetadatacoordinates_none: NodeLocationMetadataWhereInput - nodelocationmetadatacoordinates_some: NodeLocationMetadataWhereInput - nodelocationmetadatacoordinates_every: NodeLocationMetadataWhereInput - AND: [GeoCoordinatesWhereInput!] - OR: [GeoCoordinatesWhereInput!] - NOT: [GeoCoordinatesWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + penalty_eq: BigInt + penalty_gt: BigInt + penalty_gte: BigInt + penalty_lt: BigInt + penalty_lte: BigInt + penalty_in: [BigInt!] + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + group: WorkingGroupWhereInput + worker: WorkerWhereInput + AND: [TerminatedWorkerEventWhereInput!] + OR: [TerminatedWorkerEventWhereInput!] + NOT: [TerminatedWorkerEventWhereInput!] } -input GeoCoordinatesWhereUniqueInput { +input TerminatedWorkerEventWhereUniqueInput { id: ID! } -input GeoCoordinatesCreateInput { - latitude: Float! - longitude: Float! +input TerminatedWorkerEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + worker: ID! + penalty: String + rationale: String } -input GeoCoordinatesUpdateInput { - latitude: Float - longitude: Float +input TerminatedWorkerEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + worker: ID + penalty: String + rationale: String } -input DistributionBucketFamilyGeographicAreaWhereInput { +input WorkerExitedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -11943,28 +11326,55 @@ input DistributionBucketFamilyGeographicAreaWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - area_json: JSONObject - distributionBucketFamilyMetadata: DistributionBucketFamilyMetadataWhereInput - AND: [DistributionBucketFamilyGeographicAreaWhereInput!] - OR: [DistributionBucketFamilyGeographicAreaWhereInput!] - NOT: [DistributionBucketFamilyGeographicAreaWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + group: WorkingGroupWhereInput + worker: WorkerWhereInput + AND: [WorkerExitedEventWhereInput!] + OR: [WorkerExitedEventWhereInput!] + NOT: [WorkerExitedEventWhereInput!] } -input DistributionBucketFamilyGeographicAreaWhereUniqueInput { +input WorkerExitedEventWhereUniqueInput { id: ID! } -input DistributionBucketFamilyGeographicAreaCreateInput { - area: JSONObject! - distributionBucketFamilyMetadata: ID! +input WorkerExitedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + worker: ID! } -input DistributionBucketFamilyGeographicAreaUpdateInput { - area: JSONObject - distributionBucketFamilyMetadata: ID +input WorkerExitedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + worker: ID } -input DistributionBucketFamilyMetadataWhereInput { +input WorkerRewardAccountUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -11989,47 +11399,62 @@ input DistributionBucketFamilyMetadataWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - region_eq: String - region_contains: String - region_startsWith: String - region_endsWith: String - region_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - latencyTestTargets_containsAll: [String!] - latencyTestTargets_containsNone: [String!] - latencyTestTargets_containsAny: [String!] - areas_none: DistributionBucketFamilyGeographicAreaWhereInput - areas_some: DistributionBucketFamilyGeographicAreaWhereInput - areas_every: DistributionBucketFamilyGeographicAreaWhereInput - distributionbucketfamilymetadata_none: DistributionBucketFamilyWhereInput - distributionbucketfamilymetadata_some: DistributionBucketFamilyWhereInput - distributionbucketfamilymetadata_every: DistributionBucketFamilyWhereInput - AND: [DistributionBucketFamilyMetadataWhereInput!] - OR: [DistributionBucketFamilyMetadataWhereInput!] - NOT: [DistributionBucketFamilyMetadataWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + newRewardAccount_eq: String + newRewardAccount_contains: String + newRewardAccount_startsWith: String + newRewardAccount_endsWith: String + newRewardAccount_in: [String!] + group: WorkingGroupWhereInput + worker: WorkerWhereInput + AND: [WorkerRewardAccountUpdatedEventWhereInput!] + OR: [WorkerRewardAccountUpdatedEventWhereInput!] + NOT: [WorkerRewardAccountUpdatedEventWhereInput!] } -input DistributionBucketFamilyMetadataWhereUniqueInput { +input WorkerRewardAccountUpdatedEventWhereUniqueInput { id: ID! } -input DistributionBucketFamilyMetadataCreateInput { - region: String - description: String - latencyTestTargets: [String!] +input WorkerRewardAccountUpdatedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + worker: ID! + newRewardAccount: String! } -input DistributionBucketFamilyMetadataUpdateInput { - region: String - description: String - latencyTestTargets: [String!] +input WorkerRewardAccountUpdatedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + worker: ID + newRewardAccount: String } -input DistributionBucketFamilyWhereInput { +input WorkerRewardAmountUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12054,28 +11479,63 @@ input DistributionBucketFamilyWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - metadata: DistributionBucketFamilyMetadataWhereInput - buckets_none: DistributionBucketWhereInput - buckets_some: DistributionBucketWhereInput - buckets_every: DistributionBucketWhereInput - AND: [DistributionBucketFamilyWhereInput!] - OR: [DistributionBucketFamilyWhereInput!] - NOT: [DistributionBucketFamilyWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + newRewardPerBlock_eq: BigInt + newRewardPerBlock_gt: BigInt + newRewardPerBlock_gte: BigInt + newRewardPerBlock_lt: BigInt + newRewardPerBlock_lte: BigInt + newRewardPerBlock_in: [BigInt!] + group: WorkingGroupWhereInput + worker: WorkerWhereInput + AND: [WorkerRewardAmountUpdatedEventWhereInput!] + OR: [WorkerRewardAmountUpdatedEventWhereInput!] + NOT: [WorkerRewardAmountUpdatedEventWhereInput!] } -input DistributionBucketFamilyWhereUniqueInput { +input WorkerRewardAmountUpdatedEventWhereUniqueInput { id: ID! } -input DistributionBucketFamilyCreateInput { - metadata: ID +input WorkerRewardAmountUpdatedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + worker: ID! + newRewardPerBlock: String! } -input DistributionBucketFamilyUpdateInput { - metadata: ID +input WorkerRewardAmountUpdatedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + worker: ID + newRewardPerBlock: String } -input DistributionBucketWhereInput { +input WorkerRoleAccountUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12097,50 +11557,65 @@ input DistributionBucketWhereInput { deletedAt_lt: DateTime deletedAt_lte: DateTime deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - bucketIndex_eq: Int - bucketIndex_gt: Int - bucketIndex_gte: Int - bucketIndex_lt: Int - bucketIndex_lte: Int - bucketIndex_in: [Int!] - acceptingNewBags_eq: Boolean - acceptingNewBags_in: [Boolean!] - distributing_eq: Boolean - distributing_in: [Boolean!] - family: DistributionBucketFamilyWhereInput - operators_none: DistributionBucketOperatorWhereInput - operators_some: DistributionBucketOperatorWhereInput - operators_every: DistributionBucketOperatorWhereInput - bags_none: StorageBagWhereInput - bags_some: StorageBagWhereInput - bags_every: StorageBagWhereInput - AND: [DistributionBucketWhereInput!] - OR: [DistributionBucketWhereInput!] - NOT: [DistributionBucketWhereInput!] + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + newRoleAccount_eq: String + newRoleAccount_contains: String + newRoleAccount_startsWith: String + newRoleAccount_endsWith: String + newRoleAccount_in: [String!] + group: WorkingGroupWhereInput + worker: WorkerWhereInput + AND: [WorkerRoleAccountUpdatedEventWhereInput!] + OR: [WorkerRoleAccountUpdatedEventWhereInput!] + NOT: [WorkerRoleAccountUpdatedEventWhereInput!] } -input DistributionBucketWhereUniqueInput { +input WorkerRoleAccountUpdatedEventWhereUniqueInput { id: ID! } -input DistributionBucketCreateInput { - family: ID! - bucketIndex: Float! - acceptingNewBags: Boolean! - distributing: Boolean! +input WorkerRoleAccountUpdatedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + worker: ID! + newRoleAccount: String! } -input DistributionBucketUpdateInput { - family: ID - bucketIndex: Float - acceptingNewBags: Boolean - distributing: Boolean +input WorkerRoleAccountUpdatedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + worker: ID + newRoleAccount: String } -input DistributionBucketOperatorWhereInput { +input WorkerStartedLeavingEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12165,40 +11640,62 @@ input DistributionBucketOperatorWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - workerId_eq: Int - workerId_gt: Int - workerId_gte: Int - workerId_lt: Int - workerId_lte: Int - workerId_in: [Int!] - status_eq: DistributionBucketOperatorStatus - status_in: [DistributionBucketOperatorStatus!] - distributionBucket: DistributionBucketWhereInput - metadata: DistributionBucketOperatorMetadataWhereInput - AND: [DistributionBucketOperatorWhereInput!] - OR: [DistributionBucketOperatorWhereInput!] - NOT: [DistributionBucketOperatorWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + group: WorkingGroupWhereInput + worker: WorkerWhereInput + AND: [WorkerStartedLeavingEventWhereInput!] + OR: [WorkerStartedLeavingEventWhereInput!] + NOT: [WorkerStartedLeavingEventWhereInput!] } -input DistributionBucketOperatorWhereUniqueInput { +input WorkerStartedLeavingEventWhereUniqueInput { id: ID! } -input DistributionBucketOperatorCreateInput { - distributionBucket: ID! - workerId: Float! - status: DistributionBucketOperatorStatus! - metadata: ID +input WorkerStartedLeavingEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + worker: ID! + rationale: String } -input DistributionBucketOperatorUpdateInput { - distributionBucket: ID - workerId: Float - status: DistributionBucketOperatorStatus - metadata: ID +input WorkerStartedLeavingEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + worker: ID + rationale: String } -input DistributionBucketOperatorMetadataWhereInput { +input WorkerWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12223,42 +11720,184 @@ input DistributionBucketOperatorMetadataWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - nodeEndpoint_eq: String - nodeEndpoint_contains: String - nodeEndpoint_startsWith: String - nodeEndpoint_endsWith: String - nodeEndpoint_in: [String!] - extra_eq: String - extra_contains: String - extra_startsWith: String - extra_endsWith: String - extra_in: [String!] - nodeLocation: NodeLocationMetadataWhereInput - distributionbucketoperatormetadata_none: DistributionBucketOperatorWhereInput - distributionbucketoperatormetadata_some: DistributionBucketOperatorWhereInput - distributionbucketoperatormetadata_every: DistributionBucketOperatorWhereInput - AND: [DistributionBucketOperatorMetadataWhereInput!] - OR: [DistributionBucketOperatorMetadataWhereInput!] - NOT: [DistributionBucketOperatorMetadataWhereInput!] + runtimeId_eq: Int + runtimeId_gt: Int + runtimeId_gte: Int + runtimeId_lt: Int + runtimeId_lte: Int + runtimeId_in: [Int!] + groupId_eq: String + groupId_contains: String + groupId_startsWith: String + groupId_endsWith: String + groupId_in: [String!] + roleAccount_eq: String + roleAccount_contains: String + roleAccount_startsWith: String + roleAccount_endsWith: String + roleAccount_in: [String!] + rewardAccount_eq: String + rewardAccount_contains: String + rewardAccount_startsWith: String + rewardAccount_endsWith: String + rewardAccount_in: [String!] + stakeAccount_eq: String + stakeAccount_contains: String + stakeAccount_startsWith: String + stakeAccount_endsWith: String + stakeAccount_in: [String!] + status_json: JSONObject + isLead_eq: Boolean + isLead_in: [Boolean!] + isActive_eq: Boolean + isActive_in: [Boolean!] + stake_eq: BigInt + stake_gt: BigInt + stake_gte: BigInt + stake_lt: BigInt + stake_lte: BigInt + stake_in: [BigInt!] + rewardPerBlock_eq: BigInt + rewardPerBlock_gt: BigInt + rewardPerBlock_gte: BigInt + rewardPerBlock_lt: BigInt + rewardPerBlock_lte: BigInt + rewardPerBlock_in: [BigInt!] + missingRewardAmount_eq: BigInt + missingRewardAmount_gt: BigInt + missingRewardAmount_gte: BigInt + missingRewardAmount_lt: BigInt + missingRewardAmount_lte: BigInt + missingRewardAmount_in: [BigInt!] + storage_eq: String + storage_contains: String + storage_startsWith: String + storage_endsWith: String + storage_in: [String!] + group: WorkingGroupWhereInput + membership: MembershipWhereInput + payouts_none: RewardPaidEventWhereInput + payouts_some: RewardPaidEventWhereInput + payouts_every: RewardPaidEventWhereInput + slashes_none: StakeSlashedEventWhereInput + slashes_some: StakeSlashedEventWhereInput + slashes_every: StakeSlashedEventWhereInput + entry: OpeningFilledEventWhereInput + application: WorkingGroupApplicationWhereInput + managedForumCategories_none: ForumCategoryWhereInput + managedForumCategories_some: ForumCategoryWhereInput + managedForumCategories_every: ForumCategoryWhereInput + categoryarchivalstatusupdatedeventactor_none: CategoryArchivalStatusUpdatedEventWhereInput + categoryarchivalstatusupdatedeventactor_some: CategoryArchivalStatusUpdatedEventWhereInput + categoryarchivalstatusupdatedeventactor_every: CategoryArchivalStatusUpdatedEventWhereInput + categorydeletedeventactor_none: CategoryDeletedEventWhereInput + categorydeletedeventactor_some: CategoryDeletedEventWhereInput + categorydeletedeventactor_every: CategoryDeletedEventWhereInput + categorymembershipofmoderatorupdatedeventmoderator_none: CategoryMembershipOfModeratorUpdatedEventWhereInput + categorymembershipofmoderatorupdatedeventmoderator_some: CategoryMembershipOfModeratorUpdatedEventWhereInput + categorymembershipofmoderatorupdatedeventmoderator_every: CategoryMembershipOfModeratorUpdatedEventWhereInput + categorystickythreadupdateeventactor_none: CategoryStickyThreadUpdateEventWhereInput + categorystickythreadupdateeventactor_some: CategoryStickyThreadUpdateEventWhereInput + categorystickythreadupdateeventactor_every: CategoryStickyThreadUpdateEventWhereInput + leaderseteventworker_none: LeaderSetEventWhereInput + leaderseteventworker_some: LeaderSetEventWhereInput + leaderseteventworker_every: LeaderSetEventWhereInput + leaderunseteventleader_none: LeaderUnsetEventWhereInput + leaderunseteventleader_some: LeaderUnsetEventWhereInput + leaderunseteventleader_every: LeaderUnsetEventWhereInput + memberverificationstatusupdatedeventworker_none: MemberVerificationStatusUpdatedEventWhereInput + memberverificationstatusupdatedeventworker_some: MemberVerificationStatusUpdatedEventWhereInput + memberverificationstatusupdatedeventworker_every: MemberVerificationStatusUpdatedEventWhereInput + newmissedrewardlevelreachedeventworker_none: NewMissedRewardLevelReachedEventWhereInput + newmissedrewardlevelreachedeventworker_some: NewMissedRewardLevelReachedEventWhereInput + newmissedrewardlevelreachedeventworker_every: NewMissedRewardLevelReachedEventWhereInput + postmoderatedeventactor_none: PostModeratedEventWhereInput + postmoderatedeventactor_some: PostModeratedEventWhereInput + postmoderatedeventactor_every: PostModeratedEventWhereInput + stakedecreasedeventworker_none: StakeDecreasedEventWhereInput + stakedecreasedeventworker_some: StakeDecreasedEventWhereInput + stakedecreasedeventworker_every: StakeDecreasedEventWhereInput + stakeincreasedeventworker_none: StakeIncreasedEventWhereInput + stakeincreasedeventworker_some: StakeIncreasedEventWhereInput + stakeincreasedeventworker_every: StakeIncreasedEventWhereInput + terminatedleadereventworker_none: TerminatedLeaderEventWhereInput + terminatedleadereventworker_some: TerminatedLeaderEventWhereInput + terminatedleadereventworker_every: TerminatedLeaderEventWhereInput + terminatedworkereventworker_none: TerminatedWorkerEventWhereInput + terminatedworkereventworker_some: TerminatedWorkerEventWhereInput + terminatedworkereventworker_every: TerminatedWorkerEventWhereInput + threadmoderatedeventactor_none: ThreadModeratedEventWhereInput + threadmoderatedeventactor_some: ThreadModeratedEventWhereInput + threadmoderatedeventactor_every: ThreadModeratedEventWhereInput + threadmovedeventactor_none: ThreadMovedEventWhereInput + threadmovedeventactor_some: ThreadMovedEventWhereInput + threadmovedeventactor_every: ThreadMovedEventWhereInput + workerexitedeventworker_none: WorkerExitedEventWhereInput + workerexitedeventworker_some: WorkerExitedEventWhereInput + workerexitedeventworker_every: WorkerExitedEventWhereInput + workerrewardaccountupdatedeventworker_none: WorkerRewardAccountUpdatedEventWhereInput + workerrewardaccountupdatedeventworker_some: WorkerRewardAccountUpdatedEventWhereInput + workerrewardaccountupdatedeventworker_every: WorkerRewardAccountUpdatedEventWhereInput + workerrewardamountupdatedeventworker_none: WorkerRewardAmountUpdatedEventWhereInput + workerrewardamountupdatedeventworker_some: WorkerRewardAmountUpdatedEventWhereInput + workerrewardamountupdatedeventworker_every: WorkerRewardAmountUpdatedEventWhereInput + workerroleaccountupdatedeventworker_none: WorkerRoleAccountUpdatedEventWhereInput + workerroleaccountupdatedeventworker_some: WorkerRoleAccountUpdatedEventWhereInput + workerroleaccountupdatedeventworker_every: WorkerRoleAccountUpdatedEventWhereInput + workerstartedleavingeventworker_none: WorkerStartedLeavingEventWhereInput + workerstartedleavingeventworker_some: WorkerStartedLeavingEventWhereInput + workerstartedleavingeventworker_every: WorkerStartedLeavingEventWhereInput + workinggroupleader_none: WorkingGroupWhereInput + workinggroupleader_some: WorkingGroupWhereInput + workinggroupleader_every: WorkingGroupWhereInput + AND: [WorkerWhereInput!] + OR: [WorkerWhereInput!] + NOT: [WorkerWhereInput!] } -input DistributionBucketOperatorMetadataWhereUniqueInput { +input WorkerWhereUniqueInput { id: ID! } -input DistributionBucketOperatorMetadataCreateInput { - nodeEndpoint: String - nodeLocation: ID - extra: String +input WorkerCreateInput { + runtimeId: Float! + group: ID! + groupId: String! + membership: ID! + roleAccount: String! + rewardAccount: String! + stakeAccount: String! + status: JSONObject! + isLead: Boolean! + isActive: Boolean! + stake: String! + rewardPerBlock: String! + missingRewardAmount: String + entry: ID! + application: ID! + storage: String } -input DistributionBucketOperatorMetadataUpdateInput { - nodeEndpoint: String - nodeLocation: ID - extra: String +input WorkerUpdateInput { + runtimeId: Float + group: ID + groupId: String + membership: ID + roleAccount: String + rewardAccount: String + stakeAccount: String + status: JSONObject + isLead: Boolean + isActive: Boolean + stake: String + rewardPerBlock: String + missingRewardAmount: String + entry: ID + application: ID + storage: String } -input NodeLocationMetadataWhereInput { +input WorkingGroupApplicationWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12283,45 +11922,78 @@ input NodeLocationMetadataWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - countryCode_eq: String - countryCode_contains: String - countryCode_startsWith: String - countryCode_endsWith: String - countryCode_in: [String!] - city_eq: String - city_contains: String - city_startsWith: String - city_endsWith: String - city_in: [String!] - coordinates: GeoCoordinatesWhereInput - distributionbucketoperatormetadatanodeLocation_none: DistributionBucketOperatorMetadataWhereInput - distributionbucketoperatormetadatanodeLocation_some: DistributionBucketOperatorMetadataWhereInput - distributionbucketoperatormetadatanodeLocation_every: DistributionBucketOperatorMetadataWhereInput - storagebucketoperatormetadatanodeLocation_none: StorageBucketOperatorMetadataWhereInput - storagebucketoperatormetadatanodeLocation_some: StorageBucketOperatorMetadataWhereInput - storagebucketoperatormetadatanodeLocation_every: StorageBucketOperatorMetadataWhereInput - AND: [NodeLocationMetadataWhereInput!] - OR: [NodeLocationMetadataWhereInput!] - NOT: [NodeLocationMetadataWhereInput!] + runtimeId_eq: Int + runtimeId_gt: Int + runtimeId_gte: Int + runtimeId_lt: Int + runtimeId_lte: Int + runtimeId_in: [Int!] + stake_eq: BigInt + stake_gt: BigInt + stake_gte: BigInt + stake_lt: BigInt + stake_lte: BigInt + stake_in: [BigInt!] + roleAccount_eq: String + roleAccount_contains: String + roleAccount_startsWith: String + roleAccount_endsWith: String + roleAccount_in: [String!] + rewardAccount_eq: String + rewardAccount_contains: String + rewardAccount_startsWith: String + rewardAccount_endsWith: String + rewardAccount_in: [String!] + stakingAccount_eq: String + stakingAccount_contains: String + stakingAccount_startsWith: String + stakingAccount_endsWith: String + stakingAccount_in: [String!] + status_json: JSONObject + opening: WorkingGroupOpeningWhereInput + applicant: MembershipWhereInput + answers_none: ApplicationFormQuestionAnswerWhereInput + answers_some: ApplicationFormQuestionAnswerWhereInput + answers_every: ApplicationFormQuestionAnswerWhereInput + createdInEvent: AppliedOnOpeningEventWhereInput + applicationwithdrawneventapplication_none: ApplicationWithdrawnEventWhereInput + applicationwithdrawneventapplication_some: ApplicationWithdrawnEventWhereInput + applicationwithdrawneventapplication_every: ApplicationWithdrawnEventWhereInput + workerapplication_none: WorkerWhereInput + workerapplication_some: WorkerWhereInput + workerapplication_every: WorkerWhereInput + AND: [WorkingGroupApplicationWhereInput!] + OR: [WorkingGroupApplicationWhereInput!] + NOT: [WorkingGroupApplicationWhereInput!] } -input NodeLocationMetadataWhereUniqueInput { +input WorkingGroupApplicationWhereUniqueInput { id: ID! } -input NodeLocationMetadataCreateInput { - countryCode: String - city: String - coordinates: ID +input WorkingGroupApplicationCreateInput { + runtimeId: Float! + opening: ID! + applicant: ID! + stake: String! + roleAccount: String! + rewardAccount: String! + stakingAccount: String! + status: JSONObject! } -input NodeLocationMetadataUpdateInput { - countryCode: String - city: String - coordinates: ID +input WorkingGroupApplicationUpdateInput { + runtimeId: Float + opening: ID + applicant: ID + stake: String + roleAccount: String + rewardAccount: String + stakingAccount: String + status: JSONObject } -input StorageBucketOperatorMetadataWhereInput { +input ApplicationFormQuestionAnswerWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12346,42 +12018,35 @@ input StorageBucketOperatorMetadataWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - nodeEndpoint_eq: String - nodeEndpoint_contains: String - nodeEndpoint_startsWith: String - nodeEndpoint_endsWith: String - nodeEndpoint_in: [String!] - extra_eq: String - extra_contains: String - extra_startsWith: String - extra_endsWith: String - extra_in: [String!] - nodeLocation: NodeLocationMetadataWhereInput - storagebucketoperatorMetadata_none: StorageBucketWhereInput - storagebucketoperatorMetadata_some: StorageBucketWhereInput - storagebucketoperatorMetadata_every: StorageBucketWhereInput - AND: [StorageBucketOperatorMetadataWhereInput!] - OR: [StorageBucketOperatorMetadataWhereInput!] - NOT: [StorageBucketOperatorMetadataWhereInput!] + answer_eq: String + answer_contains: String + answer_startsWith: String + answer_endsWith: String + answer_in: [String!] + application: WorkingGroupApplicationWhereInput + question: ApplicationFormQuestionWhereInput + AND: [ApplicationFormQuestionAnswerWhereInput!] + OR: [ApplicationFormQuestionAnswerWhereInput!] + NOT: [ApplicationFormQuestionAnswerWhereInput!] } -input StorageBucketOperatorMetadataWhereUniqueInput { +input ApplicationFormQuestionAnswerWhereUniqueInput { id: ID! } -input StorageBucketOperatorMetadataCreateInput { - nodeEndpoint: String - nodeLocation: ID - extra: String +input ApplicationFormQuestionAnswerCreateInput { + application: ID! + question: ID! + answer: String! } -input StorageBucketOperatorMetadataUpdateInput { - nodeEndpoint: String - nodeLocation: ID - extra: String +input ApplicationFormQuestionAnswerUpdateInput { + application: ID + question: ID + answer: String } -input StorageBucketWhereInput { +input ApplicationFormQuestionWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12406,67 +12071,47 @@ input StorageBucketWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - operatorStatus_json: JSONObject - acceptingNewBags_eq: Boolean - acceptingNewBags_in: [Boolean!] - dataObjectsSizeLimit_eq: BigInt - dataObjectsSizeLimit_gt: BigInt - dataObjectsSizeLimit_gte: BigInt - dataObjectsSizeLimit_lt: BigInt - dataObjectsSizeLimit_lte: BigInt - dataObjectsSizeLimit_in: [BigInt!] - dataObjectCountLimit_eq: BigInt - dataObjectCountLimit_gt: BigInt - dataObjectCountLimit_gte: BigInt - dataObjectCountLimit_lt: BigInt - dataObjectCountLimit_lte: BigInt - dataObjectCountLimit_in: [BigInt!] - dataObjectsCount_eq: BigInt - dataObjectsCount_gt: BigInt - dataObjectsCount_gte: BigInt - dataObjectsCount_lt: BigInt - dataObjectsCount_lte: BigInt - dataObjectsCount_in: [BigInt!] - dataObjectsSize_eq: BigInt - dataObjectsSize_gt: BigInt - dataObjectsSize_gte: BigInt - dataObjectsSize_lt: BigInt - dataObjectsSize_lte: BigInt - dataObjectsSize_in: [BigInt!] - operatorMetadata: StorageBucketOperatorMetadataWhereInput - bags_none: StorageBagWhereInput - bags_some: StorageBagWhereInput - bags_every: StorageBagWhereInput - AND: [StorageBucketWhereInput!] - OR: [StorageBucketWhereInput!] - NOT: [StorageBucketWhereInput!] + question_eq: String + question_contains: String + question_startsWith: String + question_endsWith: String + question_in: [String!] + type_eq: ApplicationFormQuestionType + type_in: [ApplicationFormQuestionType!] + index_eq: Int + index_gt: Int + index_gte: Int + index_lt: Int + index_lte: Int + index_in: [Int!] + openingMetadata: WorkingGroupOpeningMetadataWhereInput + applicationformquestionanswerquestion_none: ApplicationFormQuestionAnswerWhereInput + applicationformquestionanswerquestion_some: ApplicationFormQuestionAnswerWhereInput + applicationformquestionanswerquestion_every: ApplicationFormQuestionAnswerWhereInput + AND: [ApplicationFormQuestionWhereInput!] + OR: [ApplicationFormQuestionWhereInput!] + NOT: [ApplicationFormQuestionWhereInput!] } -input StorageBucketWhereUniqueInput { +input ApplicationFormQuestionWhereUniqueInput { id: ID! } -input StorageBucketCreateInput { - operatorStatus: JSONObject! - operatorMetadata: ID - acceptingNewBags: Boolean! - dataObjectsSizeLimit: String! - dataObjectCountLimit: String! - dataObjectsCount: String! - dataObjectsSize: String! +input ApplicationFormQuestionCreateInput { + openingMetadata: ID! + question: String + type: ApplicationFormQuestionType! + index: Float! } -input StorageBucketUpdateInput { - operatorStatus: JSONObject - operatorMetadata: ID - acceptingNewBags: Boolean - dataObjectsSizeLimit: String - dataObjectCountLimit: String - dataObjectsCount: String - dataObjectsSize: String +input ApplicationFormQuestionUpdateInput { + openingMetadata: ID + question: String + type: ApplicationFormQuestionType + index: Float } -input StorageBagWhereInput { +input WorkingGroupOpeningMetadataWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12491,42 +12136,78 @@ input StorageBagWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - objectsSize_eq: BigInt - objectsSize_gt: BigInt - objectsSize_gte: BigInt - objectsSize_lt: BigInt - objectsSize_lte: BigInt - objectsSize_in: [BigInt!] - owner_json: JSONObject - objects_none: StorageDataObjectWhereInput - objects_some: StorageDataObjectWhereInput - objects_every: StorageDataObjectWhereInput - storageBuckets_none: StorageBucketWhereInput - storageBuckets_some: StorageBucketWhereInput - storageBuckets_every: StorageBucketWhereInput - distributionBuckets_none: DistributionBucketWhereInput - distributionBuckets_some: DistributionBucketWhereInput - distributionBuckets_every: DistributionBucketWhereInput - AND: [StorageBagWhereInput!] - OR: [StorageBagWhereInput!] - NOT: [StorageBagWhereInput!] + originallyValid_eq: Boolean + originallyValid_in: [Boolean!] + title_eq: String + title_contains: String + title_startsWith: String + title_endsWith: String + title_in: [String!] + shortDescription_eq: String + shortDescription_contains: String + shortDescription_startsWith: String + shortDescription_endsWith: String + shortDescription_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + hiringLimit_eq: Int + hiringLimit_gt: Int + hiringLimit_gte: Int + hiringLimit_lt: Int + hiringLimit_lte: Int + hiringLimit_in: [Int!] + expectedEnding_eq: DateTime + expectedEnding_lt: DateTime + expectedEnding_lte: DateTime + expectedEnding_gt: DateTime + expectedEnding_gte: DateTime + applicationDetails_eq: String + applicationDetails_contains: String + applicationDetails_startsWith: String + applicationDetails_endsWith: String + applicationDetails_in: [String!] + applicationFormQuestions_none: ApplicationFormQuestionWhereInput + applicationFormQuestions_some: ApplicationFormQuestionWhereInput + applicationFormQuestions_every: ApplicationFormQuestionWhereInput + upcomingworkinggroupopeningmetadata_none: UpcomingWorkingGroupOpeningWhereInput + upcomingworkinggroupopeningmetadata_some: UpcomingWorkingGroupOpeningWhereInput + upcomingworkinggroupopeningmetadata_every: UpcomingWorkingGroupOpeningWhereInput + workinggroupopeningmetadata_none: WorkingGroupOpeningWhereInput + workinggroupopeningmetadata_some: WorkingGroupOpeningWhereInput + workinggroupopeningmetadata_every: WorkingGroupOpeningWhereInput + AND: [WorkingGroupOpeningMetadataWhereInput!] + OR: [WorkingGroupOpeningMetadataWhereInput!] + NOT: [WorkingGroupOpeningMetadataWhereInput!] } -input StorageBagWhereUniqueInput { +input WorkingGroupOpeningMetadataWhereUniqueInput { id: ID! } -input StorageBagCreateInput { - objectsSize: String! - owner: JSONObject! +input WorkingGroupOpeningMetadataCreateInput { + originallyValid: Boolean! + title: String + shortDescription: String + description: String + hiringLimit: Float + expectedEnding: DateTime + applicationDetails: String } -input StorageBagUpdateInput { - objectsSize: String - owner: JSONObject +input WorkingGroupOpeningMetadataUpdateInput { + originallyValid: Boolean + title: String + shortDescription: String + description: String + hiringLimit: Float + expectedEnding: DateTime + applicationDetails: String } -input ChannelNftCollectorsWhereInput { +input UpcomingWorkingGroupOpeningWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12551,46 +12232,54 @@ input ChannelNftCollectorsWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - amount_eq: Int - amount_gt: Int - amount_gte: Int - amount_lt: Int - amount_lte: Int - amount_in: [Int!] - lastIncreaseAt_eq: DateTime - lastIncreaseAt_lt: DateTime - lastIncreaseAt_lte: DateTime - lastIncreaseAt_gt: DateTime - lastIncreaseAt_gte: DateTime - channel: ChannelWhereInput - member: MembershipWhereInput - curatorGroup: CuratorGroupWhereInput - AND: [ChannelNftCollectorsWhereInput!] - OR: [ChannelNftCollectorsWhereInput!] - NOT: [ChannelNftCollectorsWhereInput!] + expectedStart_eq: DateTime + expectedStart_lt: DateTime + expectedStart_lte: DateTime + expectedStart_gt: DateTime + expectedStart_gte: DateTime + stakeAmount_eq: BigInt + stakeAmount_gt: BigInt + stakeAmount_gte: BigInt + stakeAmount_lt: BigInt + stakeAmount_lte: BigInt + stakeAmount_in: [BigInt!] + rewardPerBlock_eq: BigInt + rewardPerBlock_gt: BigInt + rewardPerBlock_gte: BigInt + rewardPerBlock_lt: BigInt + rewardPerBlock_lte: BigInt + rewardPerBlock_in: [BigInt!] + createdInEvent: StatusTextChangedEventWhereInput + group: WorkingGroupWhereInput + metadata: WorkingGroupOpeningMetadataWhereInput + AND: [UpcomingWorkingGroupOpeningWhereInput!] + OR: [UpcomingWorkingGroupOpeningWhereInput!] + NOT: [UpcomingWorkingGroupOpeningWhereInput!] } -input ChannelNftCollectorsWhereUniqueInput { +input UpcomingWorkingGroupOpeningWhereUniqueInput { id: ID! } -input ChannelNftCollectorsCreateInput { - channel: ID! - member: ID - curatorGroup: ID - amount: Float! - lastIncreaseAt: DateTime! +input UpcomingWorkingGroupOpeningCreateInput { + createdInEvent: ID! + group: ID! + expectedStart: DateTime + stakeAmount: String + rewardPerBlock: String + metadata: ID! } -input ChannelNftCollectorsUpdateInput { - channel: ID - member: ID - curatorGroup: ID - amount: Float - lastIncreaseAt: DateTime +input UpcomingWorkingGroupOpeningUpdateInput { + createdInEvent: ID + group: ID + expectedStart: DateTime + stakeAmount: String + rewardPerBlock: String + metadata: ID } -input CuratorWhereInput { +input StatusTextChangedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12615,33 +12304,68 @@ input CuratorWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - dummy_eq: Int - dummy_gt: Int - dummy_gte: Int - dummy_lt: Int - dummy_lte: Int - dummy_in: [Int!] - curatorGroups_none: CuratorAgentPermissionsWhereInput - curatorGroups_some: CuratorAgentPermissionsWhereInput - curatorGroups_every: CuratorAgentPermissionsWhereInput - AND: [CuratorWhereInput!] - OR: [CuratorWhereInput!] - NOT: [CuratorWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + metadata_eq: String + metadata_contains: String + metadata_startsWith: String + metadata_endsWith: String + metadata_in: [String!] + result_json: JSONObject + group: WorkingGroupWhereInput + upcomingworkinggroupopeningcreatedInEvent_none: UpcomingWorkingGroupOpeningWhereInput + upcomingworkinggroupopeningcreatedInEvent_some: UpcomingWorkingGroupOpeningWhereInput + upcomingworkinggroupopeningcreatedInEvent_every: UpcomingWorkingGroupOpeningWhereInput + workinggroupmetadatasetInEvent_none: WorkingGroupMetadataWhereInput + workinggroupmetadatasetInEvent_some: WorkingGroupMetadataWhereInput + workinggroupmetadatasetInEvent_every: WorkingGroupMetadataWhereInput + AND: [StatusTextChangedEventWhereInput!] + OR: [StatusTextChangedEventWhereInput!] + NOT: [StatusTextChangedEventWhereInput!] } -input CuratorWhereUniqueInput { +input StatusTextChangedEventWhereUniqueInput { id: ID! } -input CuratorCreateInput { - dummy: Float +input StatusTextChangedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + metadata: String + result: JSONObject! } -input CuratorUpdateInput { - dummy: Float +input StatusTextChangedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + metadata: String + result: JSONObject } -input CuratorAgentPermissionsWhereInput { +input WorkingGroupMetadataWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12666,33 +12390,59 @@ input CuratorAgentPermissionsWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - permissions_containsAll: [String!] - permissions_containsNone: [String!] - permissions_containsAny: [String!] - curatorGroup: CuratorGroupWhereInput - curator: CuratorWhereInput - AND: [CuratorAgentPermissionsWhereInput!] - OR: [CuratorAgentPermissionsWhereInput!] - NOT: [CuratorAgentPermissionsWhereInput!] + status_eq: String + status_contains: String + status_startsWith: String + status_endsWith: String + status_in: [String!] + statusMessage_eq: String + statusMessage_contains: String + statusMessage_startsWith: String + statusMessage_endsWith: String + statusMessage_in: [String!] + about_eq: String + about_contains: String + about_startsWith: String + about_endsWith: String + about_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + setInEvent: StatusTextChangedEventWhereInput + group: WorkingGroupWhereInput + workinggroupmetadata_none: WorkingGroupWhereInput + workinggroupmetadata_some: WorkingGroupWhereInput + workinggroupmetadata_every: WorkingGroupWhereInput + AND: [WorkingGroupMetadataWhereInput!] + OR: [WorkingGroupMetadataWhereInput!] + NOT: [WorkingGroupMetadataWhereInput!] } -input CuratorAgentPermissionsWhereUniqueInput { +input WorkingGroupMetadataWhereUniqueInput { id: ID! } -input CuratorAgentPermissionsCreateInput { - curatorGroup: ID! - curator: ID! - permissions: [String!]! +input WorkingGroupMetadataCreateInput { + status: String + statusMessage: String + about: String + description: String + setInEvent: ID! + group: ID! } -input CuratorAgentPermissionsUpdateInput { - curatorGroup: ID - curator: ID - permissions: [String!] +input WorkingGroupMetadataUpdateInput { + status: String + statusMessage: String + about: String + description: String + setInEvent: ID + group: ID } -input AuctionBidCanceledEventWhereInput { +input BudgetFundedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12736,42 +12486,51 @@ input AuctionBidCanceledEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + group: WorkingGroupWhereInput member: MembershipWhereInput - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [AuctionBidCanceledEventWhereInput!] - OR: [AuctionBidCanceledEventWhereInput!] - NOT: [AuctionBidCanceledEventWhereInput!] + AND: [BudgetFundedEventWhereInput!] + OR: [BudgetFundedEventWhereInput!] + NOT: [BudgetFundedEventWhereInput!] } -input AuctionBidCanceledEventWhereUniqueInput { +input BudgetFundedEventWhereUniqueInput { id: ID! } -input AuctionBidCanceledEventCreateInput { +input BudgetFundedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! + group: ID! member: ID! - video: ID! - ownerMember: ID - ownerCuratorGroup: ID + rationale: String! + amount: String! } -input AuctionBidCanceledEventUpdateInput { +input BudgetFundedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float + group: ID member: ID - video: ID - ownerMember: ID - ownerCuratorGroup: ID + rationale: String + amount: String } -input NftIssuedEventWhereInput { +input BudgetSetEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12815,145 +12574,41 @@ input NftIssuedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - contentActor_json: JSONObject - royalty_eq: Float - royalty_gt: Float - royalty_gte: Float - royalty_lt: Float - royalty_lte: Float - royalty_in: [Float!] - metadata_eq: String - metadata_contains: String - metadata_startsWith: String - metadata_endsWith: String - metadata_in: [String!] - video: VideoWhereInput - videoCategory: VideoCategoryWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [NftIssuedEventWhereInput!] - OR: [NftIssuedEventWhereInput!] - NOT: [NftIssuedEventWhereInput!] -} - -input NftIssuedEventWhereUniqueInput { - id: ID! -} - -input NftIssuedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - contentActor: JSONObject! - video: ID! - videoCategory: ID - royalty: Float - metadata: String! - ownerMember: ID - ownerCuratorGroup: ID -} - -input NftIssuedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - contentActor: JSONObject - video: ID - videoCategory: ID - royalty: Float - metadata: String - ownerMember: ID - ownerCuratorGroup: ID -} - -input VideoCategoryWhereInput { - id_eq: ID - id_in: [ID!] - createdAt_eq: DateTime - createdAt_lt: DateTime - createdAt_lte: DateTime - createdAt_gt: DateTime - createdAt_gte: DateTime - createdById_eq: ID - createdById_in: [ID!] - updatedAt_eq: DateTime - updatedAt_lt: DateTime - updatedAt_lte: DateTime - updatedAt_gt: DateTime - updatedAt_gte: DateTime - updatedById_eq: ID - updatedById_in: [ID!] - deletedAt_all: Boolean - deletedAt_eq: DateTime - deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - name_eq: String - name_contains: String - name_startsWith: String - name_endsWith: String - name_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - activeVideosCounter_eq: Int - activeVideosCounter_gt: Int - activeVideosCounter_gte: Int - activeVideosCounter_lt: Int - activeVideosCounter_lte: Int - activeVideosCounter_in: [Int!] - createdInBlock_eq: Int - createdInBlock_gt: Int - createdInBlock_gte: Int - createdInBlock_lt: Int - createdInBlock_lte: Int - createdInBlock_in: [Int!] - parentCategory: VideoCategoryWhereInput - videos_none: VideoWhereInput - videos_some: VideoWhereInput - videos_every: VideoWhereInput - nfts_none: OwnedNftWhereInput - nfts_some: OwnedNftWhereInput - nfts_every: OwnedNftWhereInput - nftissuedeventvideoCategory_none: NftIssuedEventWhereInput - nftissuedeventvideoCategory_some: NftIssuedEventWhereInput - nftissuedeventvideoCategory_every: NftIssuedEventWhereInput - videocategoryparentCategory_none: VideoCategoryWhereInput - videocategoryparentCategory_some: VideoCategoryWhereInput - videocategoryparentCategory_every: VideoCategoryWhereInput - AND: [VideoCategoryWhereInput!] - OR: [VideoCategoryWhereInput!] - NOT: [VideoCategoryWhereInput!] + newBudget_eq: BigInt + newBudget_gt: BigInt + newBudget_gte: BigInt + newBudget_lt: BigInt + newBudget_lte: BigInt + newBudget_in: [BigInt!] + group: WorkingGroupWhereInput + AND: [BudgetSetEventWhereInput!] + OR: [BudgetSetEventWhereInput!] + NOT: [BudgetSetEventWhereInput!] } -input VideoCategoryWhereUniqueInput { +input BudgetSetEventWhereUniqueInput { id: ID! } -input VideoCategoryCreateInput { - name: String - description: String - activeVideosCounter: Float! - parentCategory: ID - createdInBlock: Float! -} - -input VideoCategoryUpdateInput { - name: String - description: String - activeVideosCounter: Float - parentCategory: ID - createdInBlock: Float +input BudgetSetEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + newBudget: String! } -input TransactionalStatusUpdateWhereInput { +input BudgetSetEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + newBudget: String +} + +input BudgetSpendingEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -12978,39 +12633,74 @@ input TransactionalStatusUpdateWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - transactionalStatus_json: JSONObject - changedAt_eq: Int - changedAt_gt: Int - changedAt_gte: Int - changedAt_lt: Int - changedAt_lte: Int - changedAt_in: [Int!] - nft: OwnedNftWhereInput - transactionalStatusAuction: AuctionWhereInput - AND: [TransactionalStatusUpdateWhereInput!] - OR: [TransactionalStatusUpdateWhereInput!] - NOT: [TransactionalStatusUpdateWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + reciever_eq: String + reciever_contains: String + reciever_startsWith: String + reciever_endsWith: String + reciever_in: [String!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + group: WorkingGroupWhereInput + AND: [BudgetSpendingEventWhereInput!] + OR: [BudgetSpendingEventWhereInput!] + NOT: [BudgetSpendingEventWhereInput!] } -input TransactionalStatusUpdateWhereUniqueInput { +input BudgetSpendingEventWhereUniqueInput { id: ID! } -input TransactionalStatusUpdateCreateInput { - nft: ID! - transactionalStatus: JSONObject! - transactionalStatusAuction: ID - changedAt: Float! +input BudgetSpendingEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + reciever: String! + amount: String! + rationale: String } -input TransactionalStatusUpdateUpdateInput { - nft: ID - transactionalStatus: JSONObject - transactionalStatusAuction: ID - changedAt: Float +input BudgetSpendingEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + reciever: String + amount: String + rationale: String } -input OwnedNftWhereInput { +input BudgetUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13035,84 +12725,60 @@ input OwnedNftWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - metadata_eq: String - metadata_contains: String - metadata_startsWith: String - metadata_endsWith: String - metadata_in: [String!] - transactionalStatus_json: JSONObject - creatorRoyalty_eq: Float - creatorRoyalty_gt: Float - creatorRoyalty_gte: Float - creatorRoyalty_lt: Float - creatorRoyalty_lte: Float - creatorRoyalty_in: [Float!] - isOwnedByChannel_eq: Boolean - isOwnedByChannel_in: [Boolean!] - lastSalePrice_eq: BigInt - lastSalePrice_gt: BigInt - lastSalePrice_gte: BigInt - lastSalePrice_lt: BigInt - lastSalePrice_lte: BigInt - lastSalePrice_in: [BigInt!] - lastSaleDate_eq: DateTime - lastSaleDate_lt: DateTime - lastSaleDate_lte: DateTime - lastSaleDate_gt: DateTime - lastSaleDate_gte: DateTime - video: VideoWhereInput - videoCategory: VideoCategoryWhereInput - auctions_none: AuctionWhereInput - auctions_some: AuctionWhereInput - auctions_every: AuctionWhereInput - ownerMember: MembershipWhereInput - transactionalStatusAuction: AuctionWhereInput - transactionalStatusUpdates_none: TransactionalStatusUpdateWhereInput - transactionalStatusUpdates_some: TransactionalStatusUpdateWhereInput - transactionalStatusUpdates_every: TransactionalStatusUpdateWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - creatorChannel: ChannelWhereInput - bids_none: BidWhereInput - bids_some: BidWhereInput - bids_every: BidWhereInput - AND: [OwnedNftWhereInput!] - OR: [OwnedNftWhereInput!] - NOT: [OwnedNftWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + budgetChangeAmount_eq: BigInt + budgetChangeAmount_gt: BigInt + budgetChangeAmount_gte: BigInt + budgetChangeAmount_lt: BigInt + budgetChangeAmount_lte: BigInt + budgetChangeAmount_in: [BigInt!] + group: WorkingGroupWhereInput + AND: [BudgetUpdatedEventWhereInput!] + OR: [BudgetUpdatedEventWhereInput!] + NOT: [BudgetUpdatedEventWhereInput!] } -input OwnedNftWhereUniqueInput { +input BudgetUpdatedEventWhereUniqueInput { id: ID! } -input OwnedNftCreateInput { - videoCategory: ID - ownerMember: ID - metadata: String! - transactionalStatus: JSONObject! - transactionalStatusAuction: ID - creatorRoyalty: Float - ownerCuratorGroup: ID - isOwnedByChannel: Boolean! - creatorChannel: ID! - lastSalePrice: String - lastSaleDate: DateTime +input BudgetUpdatedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + group: ID! + budgetChangeAmount: String! } -input OwnedNftUpdateInput { - videoCategory: ID - ownerMember: ID - metadata: String - transactionalStatus: JSONObject - transactionalStatusAuction: ID - creatorRoyalty: Float - ownerCuratorGroup: ID - isOwnedByChannel: Boolean - creatorChannel: ID - lastSalePrice: String - lastSaleDate: DateTime +input BudgetUpdatedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + group: ID + budgetChangeAmount: String } -input EnglishAuctionStartedEventWhereInput { +input WorkingGroupWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13137,64 +12803,128 @@ input EnglishAuctionStartedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - actor_json: JSONObject - video: VideoWhereInput - auction: AuctionWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [EnglishAuctionStartedEventWhereInput!] - OR: [EnglishAuctionStartedEventWhereInput!] - NOT: [EnglishAuctionStartedEventWhereInput!] + name_eq: String + name_contains: String + name_startsWith: String + name_endsWith: String + name_in: [String!] + budget_eq: BigInt + budget_gt: BigInt + budget_gte: BigInt + budget_lt: BigInt + budget_lte: BigInt + budget_in: [BigInt!] + metadata: WorkingGroupMetadataWhereInput + leader: WorkerWhereInput + workers_none: WorkerWhereInput + workers_some: WorkerWhereInput + workers_every: WorkerWhereInput + openings_none: WorkingGroupOpeningWhereInput + openings_some: WorkingGroupOpeningWhereInput + openings_every: WorkingGroupOpeningWhereInput + applicationwithdrawneventgroup_none: ApplicationWithdrawnEventWhereInput + applicationwithdrawneventgroup_some: ApplicationWithdrawnEventWhereInput + applicationwithdrawneventgroup_every: ApplicationWithdrawnEventWhereInput + appliedonopeningeventgroup_none: AppliedOnOpeningEventWhereInput + appliedonopeningeventgroup_some: AppliedOnOpeningEventWhereInput + appliedonopeningeventgroup_every: AppliedOnOpeningEventWhereInput + budgetfundedeventgroup_none: BudgetFundedEventWhereInput + budgetfundedeventgroup_some: BudgetFundedEventWhereInput + budgetfundedeventgroup_every: BudgetFundedEventWhereInput + budgetseteventgroup_none: BudgetSetEventWhereInput + budgetseteventgroup_some: BudgetSetEventWhereInput + budgetseteventgroup_every: BudgetSetEventWhereInput + budgetspendingeventgroup_none: BudgetSpendingEventWhereInput + budgetspendingeventgroup_some: BudgetSpendingEventWhereInput + budgetspendingeventgroup_every: BudgetSpendingEventWhereInput + budgetupdatedeventgroup_none: BudgetUpdatedEventWhereInput + budgetupdatedeventgroup_some: BudgetUpdatedEventWhereInput + budgetupdatedeventgroup_every: BudgetUpdatedEventWhereInput + leaderseteventgroup_none: LeaderSetEventWhereInput + leaderseteventgroup_some: LeaderSetEventWhereInput + leaderseteventgroup_every: LeaderSetEventWhereInput + leaderunseteventgroup_none: LeaderUnsetEventWhereInput + leaderunseteventgroup_some: LeaderUnsetEventWhereInput + leaderunseteventgroup_every: LeaderUnsetEventWhereInput + newmissedrewardlevelreachedeventgroup_none: NewMissedRewardLevelReachedEventWhereInput + newmissedrewardlevelreachedeventgroup_some: NewMissedRewardLevelReachedEventWhereInput + newmissedrewardlevelreachedeventgroup_every: NewMissedRewardLevelReachedEventWhereInput + openingaddedeventgroup_none: OpeningAddedEventWhereInput + openingaddedeventgroup_some: OpeningAddedEventWhereInput + openingaddedeventgroup_every: OpeningAddedEventWhereInput + openingcanceledeventgroup_none: OpeningCanceledEventWhereInput + openingcanceledeventgroup_some: OpeningCanceledEventWhereInput + openingcanceledeventgroup_every: OpeningCanceledEventWhereInput + openingfilledeventgroup_none: OpeningFilledEventWhereInput + openingfilledeventgroup_some: OpeningFilledEventWhereInput + openingfilledeventgroup_every: OpeningFilledEventWhereInput + rewardpaideventgroup_none: RewardPaidEventWhereInput + rewardpaideventgroup_some: RewardPaidEventWhereInput + rewardpaideventgroup_every: RewardPaidEventWhereInput + stakedecreasedeventgroup_none: StakeDecreasedEventWhereInput + stakedecreasedeventgroup_some: StakeDecreasedEventWhereInput + stakedecreasedeventgroup_every: StakeDecreasedEventWhereInput + stakeincreasedeventgroup_none: StakeIncreasedEventWhereInput + stakeincreasedeventgroup_some: StakeIncreasedEventWhereInput + stakeincreasedeventgroup_every: StakeIncreasedEventWhereInput + stakeslashedeventgroup_none: StakeSlashedEventWhereInput + stakeslashedeventgroup_some: StakeSlashedEventWhereInput + stakeslashedeventgroup_every: StakeSlashedEventWhereInput + statustextchangedeventgroup_none: StatusTextChangedEventWhereInput + statustextchangedeventgroup_some: StatusTextChangedEventWhereInput + statustextchangedeventgroup_every: StatusTextChangedEventWhereInput + terminatedleadereventgroup_none: TerminatedLeaderEventWhereInput + terminatedleadereventgroup_some: TerminatedLeaderEventWhereInput + terminatedleadereventgroup_every: TerminatedLeaderEventWhereInput + terminatedworkereventgroup_none: TerminatedWorkerEventWhereInput + terminatedworkereventgroup_some: TerminatedWorkerEventWhereInput + terminatedworkereventgroup_every: TerminatedWorkerEventWhereInput + upcomingworkinggroupopeninggroup_none: UpcomingWorkingGroupOpeningWhereInput + upcomingworkinggroupopeninggroup_some: UpcomingWorkingGroupOpeningWhereInput + upcomingworkinggroupopeninggroup_every: UpcomingWorkingGroupOpeningWhereInput + workerexitedeventgroup_none: WorkerExitedEventWhereInput + workerexitedeventgroup_some: WorkerExitedEventWhereInput + workerexitedeventgroup_every: WorkerExitedEventWhereInput + workerrewardaccountupdatedeventgroup_none: WorkerRewardAccountUpdatedEventWhereInput + workerrewardaccountupdatedeventgroup_some: WorkerRewardAccountUpdatedEventWhereInput + workerrewardaccountupdatedeventgroup_every: WorkerRewardAccountUpdatedEventWhereInput + workerrewardamountupdatedeventgroup_none: WorkerRewardAmountUpdatedEventWhereInput + workerrewardamountupdatedeventgroup_some: WorkerRewardAmountUpdatedEventWhereInput + workerrewardamountupdatedeventgroup_every: WorkerRewardAmountUpdatedEventWhereInput + workerroleaccountupdatedeventgroup_none: WorkerRoleAccountUpdatedEventWhereInput + workerroleaccountupdatedeventgroup_some: WorkerRoleAccountUpdatedEventWhereInput + workerroleaccountupdatedeventgroup_every: WorkerRoleAccountUpdatedEventWhereInput + workerstartedleavingeventgroup_none: WorkerStartedLeavingEventWhereInput + workerstartedleavingeventgroup_some: WorkerStartedLeavingEventWhereInput + workerstartedleavingeventgroup_every: WorkerStartedLeavingEventWhereInput + workinggroupmetadatagroup_none: WorkingGroupMetadataWhereInput + workinggroupmetadatagroup_some: WorkingGroupMetadataWhereInput + workinggroupmetadatagroup_every: WorkingGroupMetadataWhereInput + AND: [WorkingGroupWhereInput!] + OR: [WorkingGroupWhereInput!] + NOT: [WorkingGroupWhereInput!] } -input EnglishAuctionStartedEventWhereUniqueInput { - id: ID! +input WorkingGroupWhereUniqueInput { + id: ID + name: String } -input EnglishAuctionStartedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - actor: JSONObject! - video: ID! - auction: ID! - ownerMember: ID - ownerCuratorGroup: ID +input WorkingGroupCreateInput { + name: String! + metadata: ID + leader: ID + budget: String! } -input EnglishAuctionStartedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - actor: JSONObject - video: ID - auction: ID - ownerMember: ID - ownerCuratorGroup: ID +input WorkingGroupUpdateInput { + name: String + metadata: ID + leader: ID + budget: String } -input OpenAuctionStartedEventWhereInput { +input OpeningFilledEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13238,45 +12968,39 @@ input OpenAuctionStartedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - actor_json: JSONObject - video: VideoWhereInput - auction: AuctionWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [OpenAuctionStartedEventWhereInput!] - OR: [OpenAuctionStartedEventWhereInput!] - NOT: [OpenAuctionStartedEventWhereInput!] + group: WorkingGroupWhereInput + opening: WorkingGroupOpeningWhereInput + workersHired_none: WorkerWhereInput + workersHired_some: WorkerWhereInput + workersHired_every: WorkerWhereInput + AND: [OpeningFilledEventWhereInput!] + OR: [OpeningFilledEventWhereInput!] + NOT: [OpeningFilledEventWhereInput!] } -input OpenAuctionStartedEventWhereUniqueInput { +input OpeningFilledEventWhereUniqueInput { id: ID! } -input OpenAuctionStartedEventCreateInput { +input OpeningFilledEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - actor: JSONObject! - video: ID! - auction: ID! - ownerMember: ID - ownerCuratorGroup: ID + group: ID! + opening: ID! } -input OpenAuctionStartedEventUpdateInput { +input OpeningFilledEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - actor: JSONObject - video: ID - auction: ID - ownerMember: ID - ownerCuratorGroup: ID + group: ID + opening: ID } -input AuctionWhereInput { +input GeoCoordinatesWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13301,95 +13025,41 @@ input AuctionWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - startingPrice_eq: BigInt - startingPrice_gt: BigInt - startingPrice_gte: BigInt - startingPrice_lt: BigInt - startingPrice_lte: BigInt - startingPrice_in: [BigInt!] - buyNowPrice_eq: BigInt - buyNowPrice_gt: BigInt - buyNowPrice_gte: BigInt - buyNowPrice_lt: BigInt - buyNowPrice_lte: BigInt - buyNowPrice_in: [BigInt!] - auctionType_json: JSONObject - startsAtBlock_eq: Int - startsAtBlock_gt: Int - startsAtBlock_gte: Int - startsAtBlock_lt: Int - startsAtBlock_lte: Int - startsAtBlock_in: [Int!] - endedAtBlock_eq: Int - endedAtBlock_gt: Int - endedAtBlock_gte: Int - endedAtBlock_lt: Int - endedAtBlock_lte: Int - endedAtBlock_in: [Int!] - isCanceled_eq: Boolean - isCanceled_in: [Boolean!] - isCompleted_eq: Boolean - isCompleted_in: [Boolean!] - nft: OwnedNftWhereInput - initialOwner: MembershipWhereInput - winningMember: MembershipWhereInput - topBid: BidWhereInput - bids_none: BidWhereInput - bids_some: BidWhereInput - bids_every: BidWhereInput - whitelistedMembers_none: MembershipWhereInput - whitelistedMembers_some: MembershipWhereInput - whitelistedMembers_every: MembershipWhereInput - englishauctionstartedeventauction_none: EnglishAuctionStartedEventWhereInput - englishauctionstartedeventauction_some: EnglishAuctionStartedEventWhereInput - englishauctionstartedeventauction_every: EnglishAuctionStartedEventWhereInput - openauctionstartedeventauction_none: OpenAuctionStartedEventWhereInput - openauctionstartedeventauction_some: OpenAuctionStartedEventWhereInput - openauctionstartedeventauction_every: OpenAuctionStartedEventWhereInput - ownednfttransactionalStatusAuction_none: OwnedNftWhereInput - ownednfttransactionalStatusAuction_some: OwnedNftWhereInput - ownednfttransactionalStatusAuction_every: OwnedNftWhereInput - transactionalstatusupdatetransactionalStatusAuction_none: TransactionalStatusUpdateWhereInput - transactionalstatusupdatetransactionalStatusAuction_some: TransactionalStatusUpdateWhereInput - transactionalstatusupdatetransactionalStatusAuction_every: TransactionalStatusUpdateWhereInput - AND: [AuctionWhereInput!] - OR: [AuctionWhereInput!] - NOT: [AuctionWhereInput!] -} - -input AuctionWhereUniqueInput { - id: ID! -} - -input AuctionCreateInput { - nft: ID! - initialOwner: ID - winningMember: ID - startingPrice: String! - buyNowPrice: String - auctionType: JSONObject! - topBid: ID - startsAtBlock: Float! - endedAtBlock: Float - isCanceled: Boolean! - isCompleted: Boolean! + latitude_eq: Float + latitude_gt: Float + latitude_gte: Float + latitude_lt: Float + latitude_lte: Float + latitude_in: [Float!] + longitude_eq: Float + longitude_gt: Float + longitude_gte: Float + longitude_lt: Float + longitude_lte: Float + longitude_in: [Float!] + nodelocationmetadatacoordinates_none: NodeLocationMetadataWhereInput + nodelocationmetadatacoordinates_some: NodeLocationMetadataWhereInput + nodelocationmetadatacoordinates_every: NodeLocationMetadataWhereInput + AND: [GeoCoordinatesWhereInput!] + OR: [GeoCoordinatesWhereInput!] + NOT: [GeoCoordinatesWhereInput!] } -input AuctionUpdateInput { - nft: ID - initialOwner: ID - winningMember: ID - startingPrice: String - buyNowPrice: String - auctionType: JSONObject - topBid: ID - startsAtBlock: Float - endedAtBlock: Float - isCanceled: Boolean - isCompleted: Boolean +input GeoCoordinatesWhereUniqueInput { + id: ID! } -input BidMadeCompletingAuctionEventWhereInput { +input GeoCoordinatesCreateInput { + latitude: Float! + longitude: Float! +} + +input GeoCoordinatesUpdateInput { + latitude: Float + longitude: Float +} + +input DistributionBucketFamilyGeographicAreaWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13414,81 +13084,28 @@ input BidMadeCompletingAuctionEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - price_eq: BigInt - price_gt: BigInt - price_gte: BigInt - price_lt: BigInt - price_lte: BigInt - price_in: [BigInt!] - member: MembershipWhereInput - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - winningBid: BidWhereInput - previousTopBid: BidWhereInput - previousTopBidder: MembershipWhereInput - bidders_none: MembershipWhereInput - bidders_some: MembershipWhereInput - bidders_every: MembershipWhereInput - AND: [BidMadeCompletingAuctionEventWhereInput!] - OR: [BidMadeCompletingAuctionEventWhereInput!] - NOT: [BidMadeCompletingAuctionEventWhereInput!] + area_json: JSONObject + distributionBucketFamilyMetadata: DistributionBucketFamilyMetadataWhereInput + AND: [DistributionBucketFamilyGeographicAreaWhereInput!] + OR: [DistributionBucketFamilyGeographicAreaWhereInput!] + NOT: [DistributionBucketFamilyGeographicAreaWhereInput!] } -input BidMadeCompletingAuctionEventWhereUniqueInput { +input DistributionBucketFamilyGeographicAreaWhereUniqueInput { id: ID! } -input BidMadeCompletingAuctionEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - member: ID! - video: ID! - ownerMember: ID - ownerCuratorGroup: ID - price: String! - winningBid: ID! - previousTopBid: ID - previousTopBidder: ID +input DistributionBucketFamilyGeographicAreaCreateInput { + area: JSONObject! + distributionBucketFamilyMetadata: ID! } -input BidMadeCompletingAuctionEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - member: ID - video: ID - ownerMember: ID - ownerCuratorGroup: ID - price: String - winningBid: ID - previousTopBid: ID - previousTopBidder: ID +input DistributionBucketFamilyGeographicAreaUpdateInput { + area: JSONObject + distributionBucketFamilyMetadata: ID } -input EnglishAuctionSettledEventWhereInput { +input DistributionBucketFamilyMetadataWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13513,67 +13130,47 @@ input EnglishAuctionSettledEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - winner: MembershipWhereInput - winningBid: BidWhereInput - video: VideoWhereInput - bidders_none: MembershipWhereInput - bidders_some: MembershipWhereInput - bidders_every: MembershipWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [EnglishAuctionSettledEventWhereInput!] - OR: [EnglishAuctionSettledEventWhereInput!] - NOT: [EnglishAuctionSettledEventWhereInput!] + region_eq: String + region_contains: String + region_startsWith: String + region_endsWith: String + region_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + latencyTestTargets_containsAll: [String!] + latencyTestTargets_containsNone: [String!] + latencyTestTargets_containsAny: [String!] + areas_none: DistributionBucketFamilyGeographicAreaWhereInput + areas_some: DistributionBucketFamilyGeographicAreaWhereInput + areas_every: DistributionBucketFamilyGeographicAreaWhereInput + distributionbucketfamilymetadata_none: DistributionBucketFamilyWhereInput + distributionbucketfamilymetadata_some: DistributionBucketFamilyWhereInput + distributionbucketfamilymetadata_every: DistributionBucketFamilyWhereInput + AND: [DistributionBucketFamilyMetadataWhereInput!] + OR: [DistributionBucketFamilyMetadataWhereInput!] + NOT: [DistributionBucketFamilyMetadataWhereInput!] } -input EnglishAuctionSettledEventWhereUniqueInput { +input DistributionBucketFamilyMetadataWhereUniqueInput { id: ID! } -input EnglishAuctionSettledEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - winner: ID! - winningBid: ID! - video: ID! - ownerMember: ID - ownerCuratorGroup: ID +input DistributionBucketFamilyMetadataCreateInput { + region: String + description: String + latencyTestTargets: [String!] } -input EnglishAuctionSettledEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - winner: ID - winningBid: ID - video: ID - ownerMember: ID - ownerCuratorGroup: ID +input DistributionBucketFamilyMetadataUpdateInput { + region: String + description: String + latencyTestTargets: [String!] } -input OpenAuctionBidAcceptedEventWhereInput { +input DistributionBucketFamilyWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13598,70 +13195,28 @@ input OpenAuctionBidAcceptedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - contentActor_json: JSONObject - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - winningBid: BidWhereInput - winningBidder: MembershipWhereInput - bidders_none: MembershipWhereInput - bidders_some: MembershipWhereInput - bidders_every: MembershipWhereInput - AND: [OpenAuctionBidAcceptedEventWhereInput!] - OR: [OpenAuctionBidAcceptedEventWhereInput!] - NOT: [OpenAuctionBidAcceptedEventWhereInput!] + metadata: DistributionBucketFamilyMetadataWhereInput + buckets_none: DistributionBucketWhereInput + buckets_some: DistributionBucketWhereInput + buckets_every: DistributionBucketWhereInput + AND: [DistributionBucketFamilyWhereInput!] + OR: [DistributionBucketFamilyWhereInput!] + NOT: [DistributionBucketFamilyWhereInput!] } -input OpenAuctionBidAcceptedEventWhereUniqueInput { +input DistributionBucketFamilyWhereUniqueInput { id: ID! } -input OpenAuctionBidAcceptedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - contentActor: JSONObject! - video: ID! - ownerMember: ID - ownerCuratorGroup: ID - winningBid: ID - winningBidder: ID -} - -input OpenAuctionBidAcceptedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - contentActor: JSONObject - video: ID - ownerMember: ID - ownerCuratorGroup: ID - winningBid: ID - winningBidder: ID -} - -input BidWhereInput { +input DistributionBucketFamilyCreateInput { + metadata: ID +} + +input DistributionBucketFamilyUpdateInput { + metadata: ID +} + +input DistributionBucketWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13686,75 +13241,47 @@ input BidWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - isCanceled_eq: Boolean - isCanceled_in: [Boolean!] - createdInBlock_eq: Int - createdInBlock_gt: Int - createdInBlock_gte: Int - createdInBlock_lt: Int - createdInBlock_lte: Int - createdInBlock_in: [Int!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - auction: AuctionWhereInput - nft: OwnedNftWhereInput - auctionTopBid: AuctionWhereInput - bidder: MembershipWhereInput - auctionbidmadeeventpreviousTopBid_none: AuctionBidMadeEventWhereInput - auctionbidmadeeventpreviousTopBid_some: AuctionBidMadeEventWhereInput - auctionbidmadeeventpreviousTopBid_every: AuctionBidMadeEventWhereInput - bidmadecompletingauctioneventwinningBid_none: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventwinningBid_some: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventwinningBid_every: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventpreviousTopBid_none: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventpreviousTopBid_some: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventpreviousTopBid_every: BidMadeCompletingAuctionEventWhereInput - englishauctionsettledeventwinningBid_none: EnglishAuctionSettledEventWhereInput - englishauctionsettledeventwinningBid_some: EnglishAuctionSettledEventWhereInput - englishauctionsettledeventwinningBid_every: EnglishAuctionSettledEventWhereInput - openauctionbidacceptedeventwinningBid_none: OpenAuctionBidAcceptedEventWhereInput - openauctionbidacceptedeventwinningBid_some: OpenAuctionBidAcceptedEventWhereInput - openauctionbidacceptedeventwinningBid_every: OpenAuctionBidAcceptedEventWhereInput - AND: [BidWhereInput!] - OR: [BidWhereInput!] - NOT: [BidWhereInput!] + bucketIndex_eq: Int + bucketIndex_gt: Int + bucketIndex_gte: Int + bucketIndex_lt: Int + bucketIndex_lte: Int + bucketIndex_in: [Int!] + acceptingNewBags_eq: Boolean + acceptingNewBags_in: [Boolean!] + distributing_eq: Boolean + distributing_in: [Boolean!] + family: DistributionBucketFamilyWhereInput + operators_none: DistributionBucketOperatorWhereInput + operators_some: DistributionBucketOperatorWhereInput + operators_every: DistributionBucketOperatorWhereInput + bags_none: StorageBagWhereInput + bags_some: StorageBagWhereInput + bags_every: StorageBagWhereInput + AND: [DistributionBucketWhereInput!] + OR: [DistributionBucketWhereInput!] + NOT: [DistributionBucketWhereInput!] } -input BidWhereUniqueInput { +input DistributionBucketWhereUniqueInput { id: ID! } -input BidCreateInput { - auction: ID! - nft: ID! - bidder: ID! - amount: String! - isCanceled: Boolean! - createdInBlock: Float! - indexInBlock: Float! +input DistributionBucketCreateInput { + family: ID! + bucketIndex: Float! + acceptingNewBags: Boolean! + distributing: Boolean! } -input BidUpdateInput { - auction: ID - nft: ID - bidder: ID - amount: String - isCanceled: Boolean - createdInBlock: Float - indexInBlock: Float +input DistributionBucketUpdateInput { + family: ID + bucketIndex: Float + acceptingNewBags: Boolean + distributing: Boolean } -input AuctionBidMadeEventWhereInput { +input DistributionBucketOperatorWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13779,75 +13306,40 @@ input AuctionBidMadeEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - bidAmount_eq: BigInt - bidAmount_gt: BigInt - bidAmount_gte: BigInt - bidAmount_lt: BigInt - bidAmount_lte: BigInt - bidAmount_in: [BigInt!] - member: MembershipWhereInput - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - previousTopBid: BidWhereInput - previousTopBidder: MembershipWhereInput - AND: [AuctionBidMadeEventWhereInput!] - OR: [AuctionBidMadeEventWhereInput!] - NOT: [AuctionBidMadeEventWhereInput!] + workerId_eq: Int + workerId_gt: Int + workerId_gte: Int + workerId_lt: Int + workerId_lte: Int + workerId_in: [Int!] + status_eq: DistributionBucketOperatorStatus + status_in: [DistributionBucketOperatorStatus!] + distributionBucket: DistributionBucketWhereInput + metadata: DistributionBucketOperatorMetadataWhereInput + AND: [DistributionBucketOperatorWhereInput!] + OR: [DistributionBucketOperatorWhereInput!] + NOT: [DistributionBucketOperatorWhereInput!] } -input AuctionBidMadeEventWhereUniqueInput { +input DistributionBucketOperatorWhereUniqueInput { id: ID! } -input AuctionBidMadeEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - member: ID! - video: ID! - bidAmount: String! - ownerMember: ID - ownerCuratorGroup: ID - previousTopBid: ID - previousTopBidder: ID +input DistributionBucketOperatorCreateInput { + distributionBucket: ID! + workerId: Float! + status: DistributionBucketOperatorStatus! + metadata: ID } -input AuctionBidMadeEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - member: ID - video: ID - bidAmount: String - ownerMember: ID - ownerCuratorGroup: ID - previousTopBid: ID - previousTopBidder: ID +input DistributionBucketOperatorUpdateInput { + distributionBucket: ID + workerId: Float + status: DistributionBucketOperatorStatus + metadata: ID } -input AuctionCanceledEventWhereInput { +input DistributionBucketOperatorMetadataWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13872,61 +13364,42 @@ input AuctionCanceledEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - contentActor_json: JSONObject - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [AuctionCanceledEventWhereInput!] - OR: [AuctionCanceledEventWhereInput!] - NOT: [AuctionCanceledEventWhereInput!] + nodeEndpoint_eq: String + nodeEndpoint_contains: String + nodeEndpoint_startsWith: String + nodeEndpoint_endsWith: String + nodeEndpoint_in: [String!] + extra_eq: String + extra_contains: String + extra_startsWith: String + extra_endsWith: String + extra_in: [String!] + nodeLocation: NodeLocationMetadataWhereInput + distributionbucketoperatormetadata_none: DistributionBucketOperatorWhereInput + distributionbucketoperatormetadata_some: DistributionBucketOperatorWhereInput + distributionbucketoperatormetadata_every: DistributionBucketOperatorWhereInput + AND: [DistributionBucketOperatorMetadataWhereInput!] + OR: [DistributionBucketOperatorMetadataWhereInput!] + NOT: [DistributionBucketOperatorMetadataWhereInput!] } -input AuctionCanceledEventWhereUniqueInput { +input DistributionBucketOperatorMetadataWhereUniqueInput { id: ID! } -input AuctionCanceledEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - contentActor: JSONObject! - video: ID! - ownerMember: ID - ownerCuratorGroup: ID -} - -input AuctionCanceledEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - contentActor: JSONObject - video: ID - ownerMember: ID - ownerCuratorGroup: ID +input DistributionBucketOperatorMetadataCreateInput { + nodeEndpoint: String + nodeLocation: ID + extra: String } -input BuyNowCanceledEventWhereInput { +input DistributionBucketOperatorMetadataUpdateInput { + nodeEndpoint: String + nodeLocation: ID + extra: String +} + +input NodeLocationMetadataWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -13951,61 +13424,45 @@ input BuyNowCanceledEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - contentActor_json: JSONObject - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [BuyNowCanceledEventWhereInput!] - OR: [BuyNowCanceledEventWhereInput!] - NOT: [BuyNowCanceledEventWhereInput!] + countryCode_eq: String + countryCode_contains: String + countryCode_startsWith: String + countryCode_endsWith: String + countryCode_in: [String!] + city_eq: String + city_contains: String + city_startsWith: String + city_endsWith: String + city_in: [String!] + coordinates: GeoCoordinatesWhereInput + distributionbucketoperatormetadatanodeLocation_none: DistributionBucketOperatorMetadataWhereInput + distributionbucketoperatormetadatanodeLocation_some: DistributionBucketOperatorMetadataWhereInput + distributionbucketoperatormetadatanodeLocation_every: DistributionBucketOperatorMetadataWhereInput + storagebucketoperatormetadatanodeLocation_none: StorageBucketOperatorMetadataWhereInput + storagebucketoperatormetadatanodeLocation_some: StorageBucketOperatorMetadataWhereInput + storagebucketoperatormetadatanodeLocation_every: StorageBucketOperatorMetadataWhereInput + AND: [NodeLocationMetadataWhereInput!] + OR: [NodeLocationMetadataWhereInput!] + NOT: [NodeLocationMetadataWhereInput!] } -input BuyNowCanceledEventWhereUniqueInput { +input NodeLocationMetadataWhereUniqueInput { id: ID! } -input BuyNowCanceledEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - video: ID! - contentActor: JSONObject! - ownerMember: ID - ownerCuratorGroup: ID +input NodeLocationMetadataCreateInput { + countryCode: String + city: String + coordinates: ID } -input BuyNowCanceledEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - video: ID - contentActor: JSONObject - ownerMember: ID - ownerCuratorGroup: ID +input NodeLocationMetadataUpdateInput { + countryCode: String + city: String + coordinates: ID } -input BuyNowPriceUpdatedEventWhereInput { +input StorageBucketOperatorMetadataWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14030,69 +13487,42 @@ input BuyNowPriceUpdatedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - contentActor_json: JSONObject - newPrice_eq: BigInt - newPrice_gt: BigInt - newPrice_gte: BigInt - newPrice_lt: BigInt - newPrice_lte: BigInt - newPrice_in: [BigInt!] - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [BuyNowPriceUpdatedEventWhereInput!] - OR: [BuyNowPriceUpdatedEventWhereInput!] - NOT: [BuyNowPriceUpdatedEventWhereInput!] + nodeEndpoint_eq: String + nodeEndpoint_contains: String + nodeEndpoint_startsWith: String + nodeEndpoint_endsWith: String + nodeEndpoint_in: [String!] + extra_eq: String + extra_contains: String + extra_startsWith: String + extra_endsWith: String + extra_in: [String!] + nodeLocation: NodeLocationMetadataWhereInput + storagebucketoperatorMetadata_none: StorageBucketWhereInput + storagebucketoperatorMetadata_some: StorageBucketWhereInput + storagebucketoperatorMetadata_every: StorageBucketWhereInput + AND: [StorageBucketOperatorMetadataWhereInput!] + OR: [StorageBucketOperatorMetadataWhereInput!] + NOT: [StorageBucketOperatorMetadataWhereInput!] } -input BuyNowPriceUpdatedEventWhereUniqueInput { +input StorageBucketOperatorMetadataWhereUniqueInput { id: ID! } -input BuyNowPriceUpdatedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - video: ID! - contentActor: JSONObject! - newPrice: String! - ownerMember: ID - ownerCuratorGroup: ID +input StorageBucketOperatorMetadataCreateInput { + nodeEndpoint: String + nodeLocation: ID + extra: String } -input BuyNowPriceUpdatedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - video: ID - contentActor: JSONObject - newPrice: String - ownerMember: ID - ownerCuratorGroup: ID +input StorageBucketOperatorMetadataUpdateInput { + nodeEndpoint: String + nodeLocation: ID + extra: String } -input NftBoughtEventWhereInput { +input StorageBucketWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14117,69 +13547,127 @@ input NftBoughtEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - price_eq: BigInt - price_gt: BigInt - price_gte: BigInt - price_lt: BigInt - price_lte: BigInt - price_in: [BigInt!] - video: VideoWhereInput - member: MembershipWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [NftBoughtEventWhereInput!] - OR: [NftBoughtEventWhereInput!] - NOT: [NftBoughtEventWhereInput!] + operatorStatus_json: JSONObject + acceptingNewBags_eq: Boolean + acceptingNewBags_in: [Boolean!] + dataObjectsSizeLimit_eq: BigInt + dataObjectsSizeLimit_gt: BigInt + dataObjectsSizeLimit_gte: BigInt + dataObjectsSizeLimit_lt: BigInt + dataObjectsSizeLimit_lte: BigInt + dataObjectsSizeLimit_in: [BigInt!] + dataObjectCountLimit_eq: BigInt + dataObjectCountLimit_gt: BigInt + dataObjectCountLimit_gte: BigInt + dataObjectCountLimit_lt: BigInt + dataObjectCountLimit_lte: BigInt + dataObjectCountLimit_in: [BigInt!] + dataObjectsCount_eq: BigInt + dataObjectsCount_gt: BigInt + dataObjectsCount_gte: BigInt + dataObjectsCount_lt: BigInt + dataObjectsCount_lte: BigInt + dataObjectsCount_in: [BigInt!] + dataObjectsSize_eq: BigInt + dataObjectsSize_gt: BigInt + dataObjectsSize_gte: BigInt + dataObjectsSize_lt: BigInt + dataObjectsSize_lte: BigInt + dataObjectsSize_in: [BigInt!] + operatorMetadata: StorageBucketOperatorMetadataWhereInput + bags_none: StorageBagWhereInput + bags_some: StorageBagWhereInput + bags_every: StorageBagWhereInput + AND: [StorageBucketWhereInput!] + OR: [StorageBucketWhereInput!] + NOT: [StorageBucketWhereInput!] +} + +input StorageBucketWhereUniqueInput { + id: ID! +} + +input StorageBucketCreateInput { + operatorStatus: JSONObject! + operatorMetadata: ID + acceptingNewBags: Boolean! + dataObjectsSizeLimit: String! + dataObjectCountLimit: String! + dataObjectsCount: String! + dataObjectsSize: String! +} + +input StorageBucketUpdateInput { + operatorStatus: JSONObject + operatorMetadata: ID + acceptingNewBags: Boolean + dataObjectsSizeLimit: String + dataObjectCountLimit: String + dataObjectsCount: String + dataObjectsSize: String +} + +input StorageBagWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + objectsSize_eq: BigInt + objectsSize_gt: BigInt + objectsSize_gte: BigInt + objectsSize_lt: BigInt + objectsSize_lte: BigInt + objectsSize_in: [BigInt!] + owner_json: JSONObject + objects_none: StorageDataObjectWhereInput + objects_some: StorageDataObjectWhereInput + objects_every: StorageDataObjectWhereInput + storageBuckets_none: StorageBucketWhereInput + storageBuckets_some: StorageBucketWhereInput + storageBuckets_every: StorageBucketWhereInput + distributionBuckets_none: DistributionBucketWhereInput + distributionBuckets_some: DistributionBucketWhereInput + distributionBuckets_every: DistributionBucketWhereInput + AND: [StorageBagWhereInput!] + OR: [StorageBagWhereInput!] + NOT: [StorageBagWhereInput!] } -input NftBoughtEventWhereUniqueInput { +input StorageBagWhereUniqueInput { id: ID! } -input NftBoughtEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - video: ID! - member: ID! - ownerMember: ID - ownerCuratorGroup: ID - price: String! +input StorageBagCreateInput { + objectsSize: String! + owner: JSONObject! } -input NftBoughtEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - video: ID - member: ID - ownerMember: ID - ownerCuratorGroup: ID - price: String +input StorageBagUpdateInput { + objectsSize: String + owner: JSONObject } -input NftSellOrderMadeEventWhereInput { +input ChannelNftCollectorsWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14204,69 +13692,46 @@ input NftSellOrderMadeEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - contentActor_json: JSONObject - price_eq: BigInt - price_gt: BigInt - price_gte: BigInt - price_lt: BigInt - price_lte: BigInt - price_in: [BigInt!] - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [NftSellOrderMadeEventWhereInput!] - OR: [NftSellOrderMadeEventWhereInput!] - NOT: [NftSellOrderMadeEventWhereInput!] + amount_eq: Int + amount_gt: Int + amount_gte: Int + amount_lt: Int + amount_lte: Int + amount_in: [Int!] + lastIncreaseAt_eq: DateTime + lastIncreaseAt_lt: DateTime + lastIncreaseAt_lte: DateTime + lastIncreaseAt_gt: DateTime + lastIncreaseAt_gte: DateTime + channel: ChannelWhereInput + member: MembershipWhereInput + curatorGroup: CuratorGroupWhereInput + AND: [ChannelNftCollectorsWhereInput!] + OR: [ChannelNftCollectorsWhereInput!] + NOT: [ChannelNftCollectorsWhereInput!] } -input NftSellOrderMadeEventWhereUniqueInput { +input ChannelNftCollectorsWhereUniqueInput { id: ID! } -input NftSellOrderMadeEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - video: ID! - contentActor: JSONObject! - ownerMember: ID - ownerCuratorGroup: ID - price: String! +input ChannelNftCollectorsCreateInput { + channel: ID! + member: ID + curatorGroup: ID + amount: Float! + lastIncreaseAt: DateTime! } -input NftSellOrderMadeEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - video: ID - contentActor: JSONObject - ownerMember: ID - ownerCuratorGroup: ID - price: String +input ChannelNftCollectorsUpdateInput { + channel: ID + member: ID + curatorGroup: ID + amount: Float + lastIncreaseAt: DateTime } -input NftSlingedBackToTheOriginalArtistEventWhereInput { +input CuratorWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14291,61 +13756,33 @@ input NftSlingedBackToTheOriginalArtistEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - contentActor_json: JSONObject - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [NftSlingedBackToTheOriginalArtistEventWhereInput!] - OR: [NftSlingedBackToTheOriginalArtistEventWhereInput!] - NOT: [NftSlingedBackToTheOriginalArtistEventWhereInput!] + dummy_eq: Int + dummy_gt: Int + dummy_gte: Int + dummy_lt: Int + dummy_lte: Int + dummy_in: [Int!] + curatorGroups_none: CuratorAgentPermissionsWhereInput + curatorGroups_some: CuratorAgentPermissionsWhereInput + curatorGroups_every: CuratorAgentPermissionsWhereInput + AND: [CuratorWhereInput!] + OR: [CuratorWhereInput!] + NOT: [CuratorWhereInput!] } -input NftSlingedBackToTheOriginalArtistEventWhereUniqueInput { +input CuratorWhereUniqueInput { id: ID! } -input NftSlingedBackToTheOriginalArtistEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - video: ID! - contentActor: JSONObject! - ownerMember: ID - ownerCuratorGroup: ID +input CuratorCreateInput { + dummy: Float } -input NftSlingedBackToTheOriginalArtistEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - video: ID - contentActor: JSONObject - ownerMember: ID - ownerCuratorGroup: ID +input CuratorUpdateInput { + dummy: Float } -input OfferAcceptedEventWhereInput { +input CuratorAgentPermissionsWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14370,66 +13807,33 @@ input OfferAcceptedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - price_eq: BigInt - price_gt: BigInt - price_gte: BigInt - price_lt: BigInt - price_lte: BigInt - price_in: [BigInt!] - video: VideoWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - AND: [OfferAcceptedEventWhereInput!] - OR: [OfferAcceptedEventWhereInput!] - NOT: [OfferAcceptedEventWhereInput!] + permissions_containsAll: [String!] + permissions_containsNone: [String!] + permissions_containsAny: [String!] + curatorGroup: CuratorGroupWhereInput + curator: CuratorWhereInput + AND: [CuratorAgentPermissionsWhereInput!] + OR: [CuratorAgentPermissionsWhereInput!] + NOT: [CuratorAgentPermissionsWhereInput!] } -input OfferAcceptedEventWhereUniqueInput { +input CuratorAgentPermissionsWhereUniqueInput { id: ID! } -input OfferAcceptedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - video: ID! - ownerMember: ID - ownerCuratorGroup: ID - price: String +input CuratorAgentPermissionsCreateInput { + curatorGroup: ID! + curator: ID! + permissions: [String!]! } -input OfferAcceptedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - video: ID - ownerMember: ID - ownerCuratorGroup: ID - price: String +input CuratorAgentPermissionsUpdateInput { + curatorGroup: ID + curator: ID + permissions: [String!] } -input OfferCanceledEventWhereInput { +input AuctionBidCanceledEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14473,42 +13877,42 @@ input OfferCanceledEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - contentActor_json: JSONObject + member: MembershipWhereInput video: VideoWhereInput ownerMember: MembershipWhereInput ownerCuratorGroup: CuratorGroupWhereInput - AND: [OfferCanceledEventWhereInput!] - OR: [OfferCanceledEventWhereInput!] - NOT: [OfferCanceledEventWhereInput!] + AND: [AuctionBidCanceledEventWhereInput!] + OR: [AuctionBidCanceledEventWhereInput!] + NOT: [AuctionBidCanceledEventWhereInput!] } -input OfferCanceledEventWhereUniqueInput { +input AuctionBidCanceledEventWhereUniqueInput { id: ID! } -input OfferCanceledEventCreateInput { +input AuctionBidCanceledEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! + member: ID! video: ID! - contentActor: JSONObject! ownerMember: ID ownerCuratorGroup: ID } -input OfferCanceledEventUpdateInput { +input AuctionBidCanceledEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float + member: ID video: ID - contentActor: JSONObject ownerMember: ID ownerCuratorGroup: ID } -input OfferStartedEventWhereInput { +input NftIssuedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14553,52 +13957,59 @@ input OfferStartedEventWhereInput { indexInBlock_lte: Int indexInBlock_in: [Int!] contentActor_json: JSONObject - price_eq: BigInt - price_gt: BigInt - price_gte: BigInt - price_lt: BigInt - price_lte: BigInt - price_in: [BigInt!] + royalty_eq: Float + royalty_gt: Float + royalty_gte: Float + royalty_lt: Float + royalty_lte: Float + royalty_in: [Float!] + metadata_eq: String + metadata_contains: String + metadata_startsWith: String + metadata_endsWith: String + metadata_in: [String!] video: VideoWhereInput - member: MembershipWhereInput + videoCategory: VideoCategoryWhereInput ownerMember: MembershipWhereInput ownerCuratorGroup: CuratorGroupWhereInput - AND: [OfferStartedEventWhereInput!] - OR: [OfferStartedEventWhereInput!] - NOT: [OfferStartedEventWhereInput!] + AND: [NftIssuedEventWhereInput!] + OR: [NftIssuedEventWhereInput!] + NOT: [NftIssuedEventWhereInput!] } -input OfferStartedEventWhereUniqueInput { +input NftIssuedEventWhereUniqueInput { id: ID! } -input OfferStartedEventCreateInput { +input NftIssuedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - video: ID! contentActor: JSONObject! - member: ID! - price: String + video: ID! + videoCategory: ID + royalty: Float + metadata: String! ownerMember: ID ownerCuratorGroup: ID } -input OfferStartedEventUpdateInput { +input NftIssuedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - video: ID contentActor: JSONObject - member: ID - price: String + video: ID + videoCategory: ID + royalty: Float + metadata: String ownerMember: ID ownerCuratorGroup: ID } -input CuratorGroupWhereInput { +input VideoCategoryWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14623,89 +14034,67 @@ input CuratorGroupWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - isActive_eq: Boolean - isActive_in: [Boolean!] - channels_none: ChannelWhereInput - channels_some: ChannelWhereInput - channels_every: ChannelWhereInput - nftCollectorInChannels_none: ChannelNftCollectorsWhereInput - nftCollectorInChannels_some: ChannelNftCollectorsWhereInput - nftCollectorInChannels_every: ChannelNftCollectorsWhereInput - curators_none: CuratorAgentPermissionsWhereInput - curators_some: CuratorAgentPermissionsWhereInput - curators_every: CuratorAgentPermissionsWhereInput - auctionbidcanceledeventownerCuratorGroup_none: AuctionBidCanceledEventWhereInput - auctionbidcanceledeventownerCuratorGroup_some: AuctionBidCanceledEventWhereInput - auctionbidcanceledeventownerCuratorGroup_every: AuctionBidCanceledEventWhereInput - auctionbidmadeeventownerCuratorGroup_none: AuctionBidMadeEventWhereInput - auctionbidmadeeventownerCuratorGroup_some: AuctionBidMadeEventWhereInput - auctionbidmadeeventownerCuratorGroup_every: AuctionBidMadeEventWhereInput - auctioncanceledeventownerCuratorGroup_none: AuctionCanceledEventWhereInput - auctioncanceledeventownerCuratorGroup_some: AuctionCanceledEventWhereInput - auctioncanceledeventownerCuratorGroup_every: AuctionCanceledEventWhereInput - bidmadecompletingauctioneventownerCuratorGroup_none: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventownerCuratorGroup_some: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventownerCuratorGroup_every: BidMadeCompletingAuctionEventWhereInput - buynowcanceledeventownerCuratorGroup_none: BuyNowCanceledEventWhereInput - buynowcanceledeventownerCuratorGroup_some: BuyNowCanceledEventWhereInput - buynowcanceledeventownerCuratorGroup_every: BuyNowCanceledEventWhereInput - buynowpriceupdatedeventownerCuratorGroup_none: BuyNowPriceUpdatedEventWhereInput - buynowpriceupdatedeventownerCuratorGroup_some: BuyNowPriceUpdatedEventWhereInput - buynowpriceupdatedeventownerCuratorGroup_every: BuyNowPriceUpdatedEventWhereInput - englishauctionsettledeventownerCuratorGroup_none: EnglishAuctionSettledEventWhereInput - englishauctionsettledeventownerCuratorGroup_some: EnglishAuctionSettledEventWhereInput - englishauctionsettledeventownerCuratorGroup_every: EnglishAuctionSettledEventWhereInput - englishauctionstartedeventownerCuratorGroup_none: EnglishAuctionStartedEventWhereInput - englishauctionstartedeventownerCuratorGroup_some: EnglishAuctionStartedEventWhereInput - englishauctionstartedeventownerCuratorGroup_every: EnglishAuctionStartedEventWhereInput - nftboughteventownerCuratorGroup_none: NftBoughtEventWhereInput - nftboughteventownerCuratorGroup_some: NftBoughtEventWhereInput - nftboughteventownerCuratorGroup_every: NftBoughtEventWhereInput - nftissuedeventownerCuratorGroup_none: NftIssuedEventWhereInput - nftissuedeventownerCuratorGroup_some: NftIssuedEventWhereInput - nftissuedeventownerCuratorGroup_every: NftIssuedEventWhereInput - nftsellordermadeeventownerCuratorGroup_none: NftSellOrderMadeEventWhereInput - nftsellordermadeeventownerCuratorGroup_some: NftSellOrderMadeEventWhereInput - nftsellordermadeeventownerCuratorGroup_every: NftSellOrderMadeEventWhereInput - nftslingedbacktotheoriginalartisteventownerCuratorGroup_none: NftSlingedBackToTheOriginalArtistEventWhereInput - nftslingedbacktotheoriginalartisteventownerCuratorGroup_some: NftSlingedBackToTheOriginalArtistEventWhereInput - nftslingedbacktotheoriginalartisteventownerCuratorGroup_every: NftSlingedBackToTheOriginalArtistEventWhereInput - offeracceptedeventownerCuratorGroup_none: OfferAcceptedEventWhereInput - offeracceptedeventownerCuratorGroup_some: OfferAcceptedEventWhereInput - offeracceptedeventownerCuratorGroup_every: OfferAcceptedEventWhereInput - offercanceledeventownerCuratorGroup_none: OfferCanceledEventWhereInput - offercanceledeventownerCuratorGroup_some: OfferCanceledEventWhereInput - offercanceledeventownerCuratorGroup_every: OfferCanceledEventWhereInput - offerstartedeventownerCuratorGroup_none: OfferStartedEventWhereInput - offerstartedeventownerCuratorGroup_some: OfferStartedEventWhereInput - offerstartedeventownerCuratorGroup_every: OfferStartedEventWhereInput - openauctionbidacceptedeventownerCuratorGroup_none: OpenAuctionBidAcceptedEventWhereInput - openauctionbidacceptedeventownerCuratorGroup_some: OpenAuctionBidAcceptedEventWhereInput - openauctionbidacceptedeventownerCuratorGroup_every: OpenAuctionBidAcceptedEventWhereInput - openauctionstartedeventownerCuratorGroup_none: OpenAuctionStartedEventWhereInput - openauctionstartedeventownerCuratorGroup_some: OpenAuctionStartedEventWhereInput - openauctionstartedeventownerCuratorGroup_every: OpenAuctionStartedEventWhereInput - ownednftownerCuratorGroup_none: OwnedNftWhereInput - ownednftownerCuratorGroup_some: OwnedNftWhereInput - ownednftownerCuratorGroup_every: OwnedNftWhereInput - AND: [CuratorGroupWhereInput!] - OR: [CuratorGroupWhereInput!] - NOT: [CuratorGroupWhereInput!] + name_eq: String + name_contains: String + name_startsWith: String + name_endsWith: String + name_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + activeVideosCounter_eq: Int + activeVideosCounter_gt: Int + activeVideosCounter_gte: Int + activeVideosCounter_lt: Int + activeVideosCounter_lte: Int + activeVideosCounter_in: [Int!] + createdInBlock_eq: Int + createdInBlock_gt: Int + createdInBlock_gte: Int + createdInBlock_lt: Int + createdInBlock_lte: Int + createdInBlock_in: [Int!] + parentCategory: VideoCategoryWhereInput + videos_none: VideoWhereInput + videos_some: VideoWhereInput + videos_every: VideoWhereInput + nfts_none: OwnedNftWhereInput + nfts_some: OwnedNftWhereInput + nfts_every: OwnedNftWhereInput + nftissuedeventvideoCategory_none: NftIssuedEventWhereInput + nftissuedeventvideoCategory_some: NftIssuedEventWhereInput + nftissuedeventvideoCategory_every: NftIssuedEventWhereInput + videocategoryparentCategory_none: VideoCategoryWhereInput + videocategoryparentCategory_some: VideoCategoryWhereInput + videocategoryparentCategory_every: VideoCategoryWhereInput + AND: [VideoCategoryWhereInput!] + OR: [VideoCategoryWhereInput!] + NOT: [VideoCategoryWhereInput!] } -input CuratorGroupWhereUniqueInput { +input VideoCategoryWhereUniqueInput { id: ID! } -input CuratorGroupCreateInput { - isActive: Boolean! +input VideoCategoryCreateInput { + name: String + description: String + activeVideosCounter: Float! + parentCategory: ID + createdInBlock: Float! } -input CuratorGroupUpdateInput { - isActive: Boolean +input VideoCategoryUpdateInput { + name: String + description: String + activeVideosCounter: Float + parentCategory: ID + createdInBlock: Float } -input VideoSubtitleWhereInput { +input TransactionalStatusUpdateWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14730,45 +14119,39 @@ input VideoSubtitleWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - type_eq: String - type_contains: String - type_startsWith: String - type_endsWith: String - type_in: [String!] - mimeType_eq: String - mimeType_contains: String - mimeType_startsWith: String - mimeType_endsWith: String - mimeType_in: [String!] - video: VideoWhereInput - language: LanguageWhereInput - asset: StorageDataObjectWhereInput - AND: [VideoSubtitleWhereInput!] - OR: [VideoSubtitleWhereInput!] - NOT: [VideoSubtitleWhereInput!] + transactionalStatus_json: JSONObject + changedAt_eq: Int + changedAt_gt: Int + changedAt_gte: Int + changedAt_lt: Int + changedAt_lte: Int + changedAt_in: [Int!] + nft: OwnedNftWhereInput + transactionalStatusAuction: AuctionWhereInput + AND: [TransactionalStatusUpdateWhereInput!] + OR: [TransactionalStatusUpdateWhereInput!] + NOT: [TransactionalStatusUpdateWhereInput!] } -input VideoSubtitleWhereUniqueInput { +input TransactionalStatusUpdateWhereUniqueInput { id: ID! } -input VideoSubtitleCreateInput { - video: ID! - type: String! - language: ID - mimeType: String! - asset: ID +input TransactionalStatusUpdateCreateInput { + nft: ID! + transactionalStatus: JSONObject! + transactionalStatusAuction: ID + changedAt: Float! } -input VideoSubtitleUpdateInput { - video: ID - type: String - language: ID - mimeType: String - asset: ID +input TransactionalStatusUpdateUpdateInput { + nft: ID + transactionalStatus: JSONObject + transactionalStatusAuction: ID + changedAt: Float } -input LanguageWhereInput { +input OwnedNftWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14793,46 +14176,84 @@ input LanguageWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - iso_eq: String - iso_contains: String - iso_startsWith: String - iso_endsWith: String - iso_in: [String!] - createdInBlock_eq: Int - createdInBlock_gt: Int - createdInBlock_gte: Int - createdInBlock_lt: Int - createdInBlock_lte: Int - createdInBlock_in: [Int!] - channellanguage_none: ChannelWhereInput - channellanguage_some: ChannelWhereInput - channellanguage_every: ChannelWhereInput - videolanguage_none: VideoWhereInput - videolanguage_some: VideoWhereInput - videolanguage_every: VideoWhereInput - videosubtitlelanguage_none: VideoSubtitleWhereInput - videosubtitlelanguage_some: VideoSubtitleWhereInput - videosubtitlelanguage_every: VideoSubtitleWhereInput - AND: [LanguageWhereInput!] - OR: [LanguageWhereInput!] - NOT: [LanguageWhereInput!] + metadata_eq: String + metadata_contains: String + metadata_startsWith: String + metadata_endsWith: String + metadata_in: [String!] + transactionalStatus_json: JSONObject + creatorRoyalty_eq: Float + creatorRoyalty_gt: Float + creatorRoyalty_gte: Float + creatorRoyalty_lt: Float + creatorRoyalty_lte: Float + creatorRoyalty_in: [Float!] + isOwnedByChannel_eq: Boolean + isOwnedByChannel_in: [Boolean!] + lastSalePrice_eq: BigInt + lastSalePrice_gt: BigInt + lastSalePrice_gte: BigInt + lastSalePrice_lt: BigInt + lastSalePrice_lte: BigInt + lastSalePrice_in: [BigInt!] + lastSaleDate_eq: DateTime + lastSaleDate_lt: DateTime + lastSaleDate_lte: DateTime + lastSaleDate_gt: DateTime + lastSaleDate_gte: DateTime + video: VideoWhereInput + videoCategory: VideoCategoryWhereInput + auctions_none: AuctionWhereInput + auctions_some: AuctionWhereInput + auctions_every: AuctionWhereInput + ownerMember: MembershipWhereInput + transactionalStatusAuction: AuctionWhereInput + transactionalStatusUpdates_none: TransactionalStatusUpdateWhereInput + transactionalStatusUpdates_some: TransactionalStatusUpdateWhereInput + transactionalStatusUpdates_every: TransactionalStatusUpdateWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + creatorChannel: ChannelWhereInput + bids_none: BidWhereInput + bids_some: BidWhereInput + bids_every: BidWhereInput + AND: [OwnedNftWhereInput!] + OR: [OwnedNftWhereInput!] + NOT: [OwnedNftWhereInput!] } -input LanguageWhereUniqueInput { +input OwnedNftWhereUniqueInput { id: ID! } -input LanguageCreateInput { - iso: String! - createdInBlock: Float! +input OwnedNftCreateInput { + videoCategory: ID + ownerMember: ID + metadata: String! + transactionalStatus: JSONObject! + transactionalStatusAuction: ID + creatorRoyalty: Float + ownerCuratorGroup: ID + isOwnedByChannel: Boolean! + creatorChannel: ID! + lastSalePrice: String + lastSaleDate: DateTime } -input LanguageUpdateInput { - iso: String - createdInBlock: Float +input OwnedNftUpdateInput { + videoCategory: ID + ownerMember: ID + metadata: String + transactionalStatus: JSONObject + transactionalStatusAuction: ID + creatorRoyalty: Float + ownerCuratorGroup: ID + isOwnedByChannel: Boolean + creatorChannel: ID + lastSalePrice: String + lastSaleDate: DateTime } -input CollaboratorWhereInput { +input EnglishAuctionStartedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14857,33 +14278,64 @@ input CollaboratorWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - permissions_containsAll: [String!] - permissions_containsNone: [String!] - permissions_containsAny: [String!] - channel: ChannelWhereInput - member: MembershipWhereInput - AND: [CollaboratorWhereInput!] - OR: [CollaboratorWhereInput!] - NOT: [CollaboratorWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + actor_json: JSONObject + video: VideoWhereInput + auction: AuctionWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [EnglishAuctionStartedEventWhereInput!] + OR: [EnglishAuctionStartedEventWhereInput!] + NOT: [EnglishAuctionStartedEventWhereInput!] } -input CollaboratorWhereUniqueInput { +input EnglishAuctionStartedEventWhereUniqueInput { id: ID! } -input CollaboratorCreateInput { - channel: ID! - member: ID! - permissions: [String!]! +input EnglishAuctionStartedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + actor: JSONObject! + video: ID! + auction: ID! + ownerMember: ID + ownerCuratorGroup: ID } -input CollaboratorUpdateInput { - channel: ID - member: ID - permissions: [String!] +input EnglishAuctionStartedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + actor: JSONObject + video: ID + auction: ID + ownerMember: ID + ownerCuratorGroup: ID } -input ChannelRewardClaimedEventWhereInput { +input OpenAuctionStartedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -14927,41 +14379,158 @@ input ChannelRewardClaimedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - channel: ChannelWhereInput - AND: [ChannelRewardClaimedEventWhereInput!] - OR: [ChannelRewardClaimedEventWhereInput!] - NOT: [ChannelRewardClaimedEventWhereInput!] + actor_json: JSONObject + video: VideoWhereInput + auction: AuctionWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [OpenAuctionStartedEventWhereInput!] + OR: [OpenAuctionStartedEventWhereInput!] + NOT: [OpenAuctionStartedEventWhereInput!] +} + +input OpenAuctionStartedEventWhereUniqueInput { + id: ID! +} + +input OpenAuctionStartedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + actor: JSONObject! + video: ID! + auction: ID! + ownerMember: ID + ownerCuratorGroup: ID +} + +input OpenAuctionStartedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + actor: JSONObject + video: ID + auction: ID + ownerMember: ID + ownerCuratorGroup: ID +} + +input AuctionWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + startingPrice_eq: BigInt + startingPrice_gt: BigInt + startingPrice_gte: BigInt + startingPrice_lt: BigInt + startingPrice_lte: BigInt + startingPrice_in: [BigInt!] + buyNowPrice_eq: BigInt + buyNowPrice_gt: BigInt + buyNowPrice_gte: BigInt + buyNowPrice_lt: BigInt + buyNowPrice_lte: BigInt + buyNowPrice_in: [BigInt!] + auctionType_json: JSONObject + startsAtBlock_eq: Int + startsAtBlock_gt: Int + startsAtBlock_gte: Int + startsAtBlock_lt: Int + startsAtBlock_lte: Int + startsAtBlock_in: [Int!] + endedAtBlock_eq: Int + endedAtBlock_gt: Int + endedAtBlock_gte: Int + endedAtBlock_lt: Int + endedAtBlock_lte: Int + endedAtBlock_in: [Int!] + isCanceled_eq: Boolean + isCanceled_in: [Boolean!] + isCompleted_eq: Boolean + isCompleted_in: [Boolean!] + nft: OwnedNftWhereInput + initialOwner: MembershipWhereInput + winningMember: MembershipWhereInput + topBid: BidWhereInput + bids_none: BidWhereInput + bids_some: BidWhereInput + bids_every: BidWhereInput + whitelistedMembers_none: MembershipWhereInput + whitelistedMembers_some: MembershipWhereInput + whitelistedMembers_every: MembershipWhereInput + englishauctionstartedeventauction_none: EnglishAuctionStartedEventWhereInput + englishauctionstartedeventauction_some: EnglishAuctionStartedEventWhereInput + englishauctionstartedeventauction_every: EnglishAuctionStartedEventWhereInput + openauctionstartedeventauction_none: OpenAuctionStartedEventWhereInput + openauctionstartedeventauction_some: OpenAuctionStartedEventWhereInput + openauctionstartedeventauction_every: OpenAuctionStartedEventWhereInput + ownednfttransactionalStatusAuction_none: OwnedNftWhereInput + ownednfttransactionalStatusAuction_some: OwnedNftWhereInput + ownednfttransactionalStatusAuction_every: OwnedNftWhereInput + transactionalstatusupdatetransactionalStatusAuction_none: TransactionalStatusUpdateWhereInput + transactionalstatusupdatetransactionalStatusAuction_some: TransactionalStatusUpdateWhereInput + transactionalstatusupdatetransactionalStatusAuction_every: TransactionalStatusUpdateWhereInput + AND: [AuctionWhereInput!] + OR: [AuctionWhereInput!] + NOT: [AuctionWhereInput!] } -input ChannelRewardClaimedEventWhereUniqueInput { +input AuctionWhereUniqueInput { id: ID! } -input ChannelRewardClaimedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - channel: ID! - amount: String! +input AuctionCreateInput { + nft: ID! + initialOwner: ID + winningMember: ID + startingPrice: String! + buyNowPrice: String + auctionType: JSONObject! + topBid: ID + startsAtBlock: Float! + endedAtBlock: Float + isCanceled: Boolean! + isCompleted: Boolean! } -input ChannelRewardClaimedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - channel: ID - amount: String +input AuctionUpdateInput { + nft: ID + initialOwner: ID + winningMember: ID + startingPrice: String + buyNowPrice: String + auctionType: JSONObject + topBid: ID + startsAtBlock: Float + endedAtBlock: Float + isCanceled: Boolean + isCompleted: Boolean } -input ChannelFundsWithdrawnEventWhereInput { +input BidMadeCompletingAuctionEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15005,51 +14574,62 @@ input ChannelFundsWithdrawnEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - account_eq: String - account_contains: String - account_startsWith: String - account_endsWith: String - account_in: [String!] - actor_json: JSONObject - channel: ChannelWhereInput - AND: [ChannelFundsWithdrawnEventWhereInput!] - OR: [ChannelFundsWithdrawnEventWhereInput!] - NOT: [ChannelFundsWithdrawnEventWhereInput!] + price_eq: BigInt + price_gt: BigInt + price_gte: BigInt + price_lt: BigInt + price_lte: BigInt + price_in: [BigInt!] + member: MembershipWhereInput + video: VideoWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + winningBid: BidWhereInput + previousTopBid: BidWhereInput + previousTopBidder: MembershipWhereInput + bidders_none: MembershipWhereInput + bidders_some: MembershipWhereInput + bidders_every: MembershipWhereInput + AND: [BidMadeCompletingAuctionEventWhereInput!] + OR: [BidMadeCompletingAuctionEventWhereInput!] + NOT: [BidMadeCompletingAuctionEventWhereInput!] } -input ChannelFundsWithdrawnEventWhereUniqueInput { +input BidMadeCompletingAuctionEventWhereUniqueInput { id: ID! } -input ChannelFundsWithdrawnEventCreateInput { +input BidMadeCompletingAuctionEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - channel: ID! - amount: String! - account: String - actor: JSONObject! + member: ID! + video: ID! + ownerMember: ID + ownerCuratorGroup: ID + price: String! + winningBid: ID! + previousTopBid: ID + previousTopBidder: ID } -input ChannelFundsWithdrawnEventUpdateInput { +input BidMadeCompletingAuctionEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - channel: ID - amount: String - account: String - actor: JSONObject + member: ID + video: ID + ownerMember: ID + ownerCuratorGroup: ID + price: String + winningBid: ID + previousTopBid: ID + previousTopBidder: ID } -input ChannelPaymentMadeEventWhereInput { +input EnglishAuctionSettledEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15093,54 +14673,48 @@ input ChannelPaymentMadeEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - paymentContext_json: JSONObject - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - payer: MembershipWhereInput - payeeChannel: ChannelWhereInput - AND: [ChannelPaymentMadeEventWhereInput!] - OR: [ChannelPaymentMadeEventWhereInput!] - NOT: [ChannelPaymentMadeEventWhereInput!] + winner: MembershipWhereInput + winningBid: BidWhereInput + video: VideoWhereInput + bidders_none: MembershipWhereInput + bidders_some: MembershipWhereInput + bidders_every: MembershipWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [EnglishAuctionSettledEventWhereInput!] + OR: [EnglishAuctionSettledEventWhereInput!] + NOT: [EnglishAuctionSettledEventWhereInput!] } -input ChannelPaymentMadeEventWhereUniqueInput { +input EnglishAuctionSettledEventWhereUniqueInput { id: ID! } -input ChannelPaymentMadeEventCreateInput { +input EnglishAuctionSettledEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - payer: ID! - amount: String! - paymentContext: JSONObject! - payeeChannel: ID - rationale: String + winner: ID! + winningBid: ID! + video: ID! + ownerMember: ID + ownerCuratorGroup: ID } -input ChannelPaymentMadeEventUpdateInput { +input EnglishAuctionSettledEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - payer: ID - amount: String - paymentContext: JSONObject - payeeChannel: ID - rationale: String + winner: ID + winningBid: ID + video: ID + ownerMember: ID + ownerCuratorGroup: ID } -input ChannelRewardClaimedAndWithdrawnEventWhereInput { +input OpenAuctionBidAcceptedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15175,60 +14749,60 @@ input ChannelRewardClaimedAndWithdrawnEventWhereInput { inBlock_gte: Int inBlock_lt: Int inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - account_eq: String - account_contains: String - account_startsWith: String - account_endsWith: String - account_in: [String!] - actor_json: JSONObject - channel: ChannelWhereInput - AND: [ChannelRewardClaimedAndWithdrawnEventWhereInput!] - OR: [ChannelRewardClaimedAndWithdrawnEventWhereInput!] - NOT: [ChannelRewardClaimedAndWithdrawnEventWhereInput!] + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + contentActor_json: JSONObject + video: VideoWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + winningBid: BidWhereInput + winningBidder: MembershipWhereInput + bidders_none: MembershipWhereInput + bidders_some: MembershipWhereInput + bidders_every: MembershipWhereInput + AND: [OpenAuctionBidAcceptedEventWhereInput!] + OR: [OpenAuctionBidAcceptedEventWhereInput!] + NOT: [OpenAuctionBidAcceptedEventWhereInput!] } -input ChannelRewardClaimedAndWithdrawnEventWhereUniqueInput { +input OpenAuctionBidAcceptedEventWhereUniqueInput { id: ID! } -input ChannelRewardClaimedAndWithdrawnEventCreateInput { +input OpenAuctionBidAcceptedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - channel: ID! - amount: String! - account: String - actor: JSONObject! + contentActor: JSONObject! + video: ID! + ownerMember: ID + ownerCuratorGroup: ID + winningBid: ID + winningBidder: ID } -input ChannelRewardClaimedAndWithdrawnEventUpdateInput { +input OpenAuctionBidAcceptedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - channel: ID - amount: String - account: String - actor: JSONObject + contentActor: JSONObject + video: ID + ownerMember: ID + ownerCuratorGroup: ID + winningBid: ID + winningBidder: ID } -input CommentReactionWhereInput { +input BidWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15253,46 +14827,75 @@ input CommentReactionWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - reactionId_eq: Int - reactionId_gt: Int - reactionId_gte: Int - reactionId_lt: Int - reactionId_lte: Int - reactionId_in: [Int!] - memberId_eq: String - memberId_contains: String - memberId_startsWith: String - memberId_endsWith: String - memberId_in: [String!] - member: MembershipWhereInput - comment: CommentWhereInput - video: VideoWhereInput - AND: [CommentReactionWhereInput!] - OR: [CommentReactionWhereInput!] - NOT: [CommentReactionWhereInput!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + isCanceled_eq: Boolean + isCanceled_in: [Boolean!] + createdInBlock_eq: Int + createdInBlock_gt: Int + createdInBlock_gte: Int + createdInBlock_lt: Int + createdInBlock_lte: Int + createdInBlock_in: [Int!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + auction: AuctionWhereInput + nft: OwnedNftWhereInput + auctionTopBid: AuctionWhereInput + bidder: MembershipWhereInput + auctionbidmadeeventpreviousTopBid_none: AuctionBidMadeEventWhereInput + auctionbidmadeeventpreviousTopBid_some: AuctionBidMadeEventWhereInput + auctionbidmadeeventpreviousTopBid_every: AuctionBidMadeEventWhereInput + bidmadecompletingauctioneventwinningBid_none: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventwinningBid_some: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventwinningBid_every: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventpreviousTopBid_none: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventpreviousTopBid_some: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventpreviousTopBid_every: BidMadeCompletingAuctionEventWhereInput + englishauctionsettledeventwinningBid_none: EnglishAuctionSettledEventWhereInput + englishauctionsettledeventwinningBid_some: EnglishAuctionSettledEventWhereInput + englishauctionsettledeventwinningBid_every: EnglishAuctionSettledEventWhereInput + openauctionbidacceptedeventwinningBid_none: OpenAuctionBidAcceptedEventWhereInput + openauctionbidacceptedeventwinningBid_some: OpenAuctionBidAcceptedEventWhereInput + openauctionbidacceptedeventwinningBid_every: OpenAuctionBidAcceptedEventWhereInput + AND: [BidWhereInput!] + OR: [BidWhereInput!] + NOT: [BidWhereInput!] } -input CommentReactionWhereUniqueInput { +input BidWhereUniqueInput { id: ID! } -input CommentReactionCreateInput { - reactionId: Float! - member: ID! - memberId: String! - comment: ID! - video: ID! +input BidCreateInput { + auction: ID! + nft: ID! + bidder: ID! + amount: String! + isCanceled: Boolean! + createdInBlock: Float! + indexInBlock: Float! } -input CommentReactionUpdateInput { - reactionId: Float - member: ID - memberId: String - comment: ID - video: ID +input BidUpdateInput { + auction: ID + nft: ID + bidder: ID + amount: String + isCanceled: Boolean + createdInBlock: Float + indexInBlock: Float } -input CommentReactionsCountByReactionIdWhereInput { +input AuctionBidMadeEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15317,44 +14920,75 @@ input CommentReactionsCountByReactionIdWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - reactionId_eq: Int - reactionId_gt: Int - reactionId_gte: Int - reactionId_lt: Int - reactionId_lte: Int - reactionId_in: [Int!] - count_eq: Int - count_gt: Int - count_gte: Int - count_lt: Int - count_lte: Int - count_in: [Int!] - comment: CommentWhereInput + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + bidAmount_eq: BigInt + bidAmount_gt: BigInt + bidAmount_gte: BigInt + bidAmount_lt: BigInt + bidAmount_lte: BigInt + bidAmount_in: [BigInt!] + member: MembershipWhereInput video: VideoWhereInput - AND: [CommentReactionsCountByReactionIdWhereInput!] - OR: [CommentReactionsCountByReactionIdWhereInput!] - NOT: [CommentReactionsCountByReactionIdWhereInput!] + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + previousTopBid: BidWhereInput + previousTopBidder: MembershipWhereInput + AND: [AuctionBidMadeEventWhereInput!] + OR: [AuctionBidMadeEventWhereInput!] + NOT: [AuctionBidMadeEventWhereInput!] } -input CommentReactionsCountByReactionIdWhereUniqueInput { +input AuctionBidMadeEventWhereUniqueInput { id: ID! } -input CommentReactionsCountByReactionIdCreateInput { - reactionId: Float! - count: Float! - comment: ID! +input AuctionBidMadeEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + member: ID! video: ID! + bidAmount: String! + ownerMember: ID + ownerCuratorGroup: ID + previousTopBid: ID + previousTopBidder: ID } -input CommentReactionsCountByReactionIdUpdateInput { - reactionId: Float - count: Float - comment: ID +input AuctionBidMadeEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + member: ID video: ID + bidAmount: String + ownerMember: ID + ownerCuratorGroup: ID + previousTopBid: ID + previousTopBidder: ID } -input CommentTextUpdatedEventWhereInput { +input AuctionCanceledEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15398,46 +15032,42 @@ input CommentTextUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newText_eq: String - newText_contains: String - newText_startsWith: String - newText_endsWith: String - newText_in: [String!] - comment: CommentWhereInput + contentActor_json: JSONObject video: VideoWhereInput - videoChannel: ChannelWhereInput - AND: [CommentTextUpdatedEventWhereInput!] - OR: [CommentTextUpdatedEventWhereInput!] - NOT: [CommentTextUpdatedEventWhereInput!] + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [AuctionCanceledEventWhereInput!] + OR: [AuctionCanceledEventWhereInput!] + NOT: [AuctionCanceledEventWhereInput!] } -input CommentTextUpdatedEventWhereUniqueInput { +input AuctionCanceledEventWhereUniqueInput { id: ID! } -input CommentTextUpdatedEventCreateInput { +input AuctionCanceledEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - comment: ID! + contentActor: JSONObject! video: ID! - videoChannel: ID! - newText: String! + ownerMember: ID + ownerCuratorGroup: ID } -input CommentTextUpdatedEventUpdateInput { +input AuctionCanceledEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - comment: ID - video: ID - videoChannel: ID - newText: String + contentActor: JSONObject + video: ID + ownerMember: ID + ownerCuratorGroup: ID } -input CommentDeletedEventWhereInput { +input BuyNowCanceledEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15481,39 +15111,42 @@ input CommentDeletedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - comment: CommentWhereInput + contentActor_json: JSONObject video: VideoWhereInput - videoChannel: ChannelWhereInput - AND: [CommentDeletedEventWhereInput!] - OR: [CommentDeletedEventWhereInput!] - NOT: [CommentDeletedEventWhereInput!] + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [BuyNowCanceledEventWhereInput!] + OR: [BuyNowCanceledEventWhereInput!] + NOT: [BuyNowCanceledEventWhereInput!] } -input CommentDeletedEventWhereUniqueInput { +input BuyNowCanceledEventWhereUniqueInput { id: ID! } -input CommentDeletedEventCreateInput { +input BuyNowCanceledEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - comment: ID! video: ID! - videoChannel: ID! + contentActor: JSONObject! + ownerMember: ID + ownerCuratorGroup: ID } -input CommentDeletedEventUpdateInput { +input BuyNowCanceledEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - comment: ID video: ID - videoChannel: ID + contentActor: JSONObject + ownerMember: ID + ownerCuratorGroup: ID } -input CommentModeratedEventWhereInput { +input BuyNowPriceUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15557,49 +15190,50 @@ input CommentModeratedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - actor_json: JSONObject - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - comment: CommentWhereInput + contentActor_json: JSONObject + newPrice_eq: BigInt + newPrice_gt: BigInt + newPrice_gte: BigInt + newPrice_lt: BigInt + newPrice_lte: BigInt + newPrice_in: [BigInt!] video: VideoWhereInput - videoChannel: ChannelWhereInput - AND: [CommentModeratedEventWhereInput!] - OR: [CommentModeratedEventWhereInput!] - NOT: [CommentModeratedEventWhereInput!] + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [BuyNowPriceUpdatedEventWhereInput!] + OR: [BuyNowPriceUpdatedEventWhereInput!] + NOT: [BuyNowPriceUpdatedEventWhereInput!] } -input CommentModeratedEventWhereUniqueInput { +input BuyNowPriceUpdatedEventWhereUniqueInput { id: ID! } -input CommentModeratedEventCreateInput { +input BuyNowPriceUpdatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - comment: ID! video: ID! - videoChannel: ID! - actor: JSONObject! - rationale: String! + contentActor: JSONObject! + newPrice: String! + ownerMember: ID + ownerCuratorGroup: ID } -input CommentModeratedEventUpdateInput { +input BuyNowPriceUpdatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - comment: ID video: ID - videoChannel: ID - actor: JSONObject - rationale: String + contentActor: JSONObject + newPrice: String + ownerMember: ID + ownerCuratorGroup: ID } -input CommentPinnedEventWhereInput { +input NftBoughtEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15643,43 +15277,50 @@ input CommentPinnedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - action_eq: Boolean - action_in: [Boolean!] - comment: CommentWhereInput + price_eq: BigInt + price_gt: BigInt + price_gte: BigInt + price_lt: BigInt + price_lte: BigInt + price_in: [BigInt!] video: VideoWhereInput - videoChannel: ChannelWhereInput - AND: [CommentPinnedEventWhereInput!] - OR: [CommentPinnedEventWhereInput!] - NOT: [CommentPinnedEventWhereInput!] + member: MembershipWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [NftBoughtEventWhereInput!] + OR: [NftBoughtEventWhereInput!] + NOT: [NftBoughtEventWhereInput!] } -input CommentPinnedEventWhereUniqueInput { +input NftBoughtEventWhereUniqueInput { id: ID! } -input CommentPinnedEventCreateInput { +input NftBoughtEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - comment: ID! video: ID! - videoChannel: ID! - action: Boolean! + member: ID! + ownerMember: ID + ownerCuratorGroup: ID + price: String! } -input CommentPinnedEventUpdateInput { +input NftBoughtEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - comment: ID video: ID - videoChannel: ID - action: Boolean + member: ID + ownerMember: ID + ownerCuratorGroup: ID + price: String } -input CommentReactedEventWhereInput { +input NftSellOrderMadeEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15723,50 +15364,50 @@ input CommentReactedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - reactionResult_eq: Int - reactionResult_gt: Int - reactionResult_gte: Int - reactionResult_lt: Int - reactionResult_lte: Int - reactionResult_in: [Int!] - comment: CommentWhereInput + contentActor_json: JSONObject + price_eq: BigInt + price_gt: BigInt + price_gte: BigInt + price_lt: BigInt + price_lte: BigInt + price_in: [BigInt!] video: VideoWhereInput - videoChannel: ChannelWhereInput - reactingMember: MembershipWhereInput - AND: [CommentReactedEventWhereInput!] - OR: [CommentReactedEventWhereInput!] - NOT: [CommentReactedEventWhereInput!] + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [NftSellOrderMadeEventWhereInput!] + OR: [NftSellOrderMadeEventWhereInput!] + NOT: [NftSellOrderMadeEventWhereInput!] } -input CommentReactedEventWhereUniqueInput { +input NftSellOrderMadeEventWhereUniqueInput { id: ID! } -input CommentReactedEventCreateInput { +input NftSellOrderMadeEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - comment: ID! video: ID! - videoChannel: ID! - reactionResult: Float! - reactingMember: ID! + contentActor: JSONObject! + ownerMember: ID + ownerCuratorGroup: ID + price: String! } -input CommentReactedEventUpdateInput { +input NftSellOrderMadeEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - comment: ID video: ID - videoChannel: ID - reactionResult: Float - reactingMember: ID + contentActor: JSONObject + ownerMember: ID + ownerCuratorGroup: ID + price: String } -input CommentWhereInput { +input NftSlingedBackToTheOriginalArtistEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15791,93 +15432,61 @@ input CommentWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - text_eq: String - text_contains: String - text_startsWith: String - text_endsWith: String - text_in: [String!] - status_eq: CommentStatus - status_in: [CommentStatus!] - repliesCount_eq: Int - repliesCount_gt: Int - repliesCount_gte: Int - repliesCount_lt: Int - repliesCount_lte: Int - repliesCount_in: [Int!] - reactionsCount_eq: Int - reactionsCount_gt: Int - reactionsCount_gte: Int - reactionsCount_lt: Int - reactionsCount_lte: Int - reactionsCount_in: [Int!] - reactionsAndRepliesCount_eq: Int - reactionsAndRepliesCount_gt: Int - reactionsAndRepliesCount_gte: Int - reactionsAndRepliesCount_lt: Int - reactionsAndRepliesCount_lte: Int - reactionsAndRepliesCount_in: [Int!] - isEdited_eq: Boolean - isEdited_in: [Boolean!] - author: MembershipWhereInput + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + contentActor_json: JSONObject video: VideoWhereInput - reactions_none: CommentReactionWhereInput - reactions_some: CommentReactionWhereInput - reactions_every: CommentReactionWhereInput - reactionsCountByReactionId_none: CommentReactionsCountByReactionIdWhereInput - reactionsCountByReactionId_some: CommentReactionsCountByReactionIdWhereInput - reactionsCountByReactionId_every: CommentReactionsCountByReactionIdWhereInput - parentComment: CommentWhereInput - edits_none: CommentTextUpdatedEventWhereInput - edits_some: CommentTextUpdatedEventWhereInput - edits_every: CommentTextUpdatedEventWhereInput - deletedInEvent: CommentDeletedEventWhereInput - moderatedInEvent: CommentModeratedEventWhereInput - commentparentComment_none: CommentWhereInput - commentparentComment_some: CommentWhereInput - commentparentComment_every: CommentWhereInput - commentcreatedeventcomment_none: CommentCreatedEventWhereInput - commentcreatedeventcomment_some: CommentCreatedEventWhereInput - commentcreatedeventcomment_every: CommentCreatedEventWhereInput - commentpinnedeventcomment_none: CommentPinnedEventWhereInput - commentpinnedeventcomment_some: CommentPinnedEventWhereInput - commentpinnedeventcomment_every: CommentPinnedEventWhereInput - commentreactedeventcomment_none: CommentReactedEventWhereInput - commentreactedeventcomment_some: CommentReactedEventWhereInput - commentreactedeventcomment_every: CommentReactedEventWhereInput - AND: [CommentWhereInput!] - OR: [CommentWhereInput!] - NOT: [CommentWhereInput!] + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [NftSlingedBackToTheOriginalArtistEventWhereInput!] + OR: [NftSlingedBackToTheOriginalArtistEventWhereInput!] + NOT: [NftSlingedBackToTheOriginalArtistEventWhereInput!] } -input CommentWhereUniqueInput { +input NftSlingedBackToTheOriginalArtistEventWhereUniqueInput { id: ID! } -input CommentCreateInput { - author: ID! - text: String! +input NftSlingedBackToTheOriginalArtistEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! video: ID! - status: CommentStatus! - parentComment: ID - repliesCount: Float! - reactionsCount: Float! - reactionsAndRepliesCount: Float! - isEdited: Boolean! + contentActor: JSONObject! + ownerMember: ID + ownerCuratorGroup: ID } -input CommentUpdateInput { - author: ID - text: String +input NftSlingedBackToTheOriginalArtistEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float video: ID - status: CommentStatus - parentComment: ID - repliesCount: Float - reactionsCount: Float - reactionsAndRepliesCount: Float - isEdited: Boolean + contentActor: JSONObject + ownerMember: ID + ownerCuratorGroup: ID } -input CommentCreatedEventWhereInput { +input OfferAcceptedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -15921,49 +15530,47 @@ input CommentCreatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - text_eq: String - text_contains: String - text_startsWith: String - text_endsWith: String - text_in: [String!] - comment: CommentWhereInput - parentCommentAuthor: MembershipWhereInput + price_eq: BigInt + price_gt: BigInt + price_gte: BigInt + price_lt: BigInt + price_lte: BigInt + price_in: [BigInt!] video: VideoWhereInput - videoChannel: ChannelWhereInput - AND: [CommentCreatedEventWhereInput!] - OR: [CommentCreatedEventWhereInput!] - NOT: [CommentCreatedEventWhereInput!] + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [OfferAcceptedEventWhereInput!] + OR: [OfferAcceptedEventWhereInput!] + NOT: [OfferAcceptedEventWhereInput!] } -input CommentCreatedEventWhereUniqueInput { +input OfferAcceptedEventWhereUniqueInput { id: ID! } -input CommentCreatedEventCreateInput { +input OfferAcceptedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - comment: ID! - parentCommentAuthor: ID video: ID! - videoChannel: ID! - text: String! + ownerMember: ID + ownerCuratorGroup: ID + price: String } -input CommentCreatedEventUpdateInput { +input OfferAcceptedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - comment: ID - parentCommentAuthor: ID video: ID - videoChannel: ID - text: String + ownerMember: ID + ownerCuratorGroup: ID + price: String } -input MemberBannedFromChannelEventWhereInput { +input OfferCanceledEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16007,40 +15614,42 @@ input MemberBannedFromChannelEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - action_eq: Boolean - action_in: [Boolean!] - channel: ChannelWhereInput - member: MembershipWhereInput - AND: [MemberBannedFromChannelEventWhereInput!] - OR: [MemberBannedFromChannelEventWhereInput!] - NOT: [MemberBannedFromChannelEventWhereInput!] + contentActor_json: JSONObject + video: VideoWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [OfferCanceledEventWhereInput!] + OR: [OfferCanceledEventWhereInput!] + NOT: [OfferCanceledEventWhereInput!] } -input MemberBannedFromChannelEventWhereUniqueInput { +input OfferCanceledEventWhereUniqueInput { id: ID! } -input MemberBannedFromChannelEventCreateInput { +input OfferCanceledEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - channel: ID! - member: ID! - action: Boolean! + video: ID! + contentActor: JSONObject! + ownerMember: ID + ownerCuratorGroup: ID } -input MemberBannedFromChannelEventUpdateInput { +input OfferCanceledEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - channel: ID - member: ID - action: Boolean + video: ID + contentActor: JSONObject + ownerMember: ID + ownerCuratorGroup: ID } -input VideoReactedEventWhereInput { +input OfferStartedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16084,43 +15693,160 @@ input VideoReactedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - reactionResult_eq: VideoReactionOptions - reactionResult_in: [VideoReactionOptions!] + contentActor_json: JSONObject + price_eq: BigInt + price_gt: BigInt + price_gte: BigInt + price_lt: BigInt + price_lte: BigInt + price_in: [BigInt!] video: VideoWhereInput - videoChannel: ChannelWhereInput - reactingMember: MembershipWhereInput - AND: [VideoReactedEventWhereInput!] - OR: [VideoReactedEventWhereInput!] - NOT: [VideoReactedEventWhereInput!] + member: MembershipWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + AND: [OfferStartedEventWhereInput!] + OR: [OfferStartedEventWhereInput!] + NOT: [OfferStartedEventWhereInput!] } -input VideoReactedEventWhereUniqueInput { +input OfferStartedEventWhereUniqueInput { id: ID! } -input VideoReactedEventCreateInput { +input OfferStartedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! video: ID! - videoChannel: ID! - reactionResult: VideoReactionOptions! - reactingMember: ID! + contentActor: JSONObject! + member: ID! + price: String + ownerMember: ID + ownerCuratorGroup: ID +} + +input OfferStartedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + video: ID + contentActor: JSONObject + member: ID + price: String + ownerMember: ID + ownerCuratorGroup: ID +} + +input CuratorGroupWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + isActive_eq: Boolean + isActive_in: [Boolean!] + channels_none: ChannelWhereInput + channels_some: ChannelWhereInput + channels_every: ChannelWhereInput + nftCollectorInChannels_none: ChannelNftCollectorsWhereInput + nftCollectorInChannels_some: ChannelNftCollectorsWhereInput + nftCollectorInChannels_every: ChannelNftCollectorsWhereInput + curators_none: CuratorAgentPermissionsWhereInput + curators_some: CuratorAgentPermissionsWhereInput + curators_every: CuratorAgentPermissionsWhereInput + auctionbidcanceledeventownerCuratorGroup_none: AuctionBidCanceledEventWhereInput + auctionbidcanceledeventownerCuratorGroup_some: AuctionBidCanceledEventWhereInput + auctionbidcanceledeventownerCuratorGroup_every: AuctionBidCanceledEventWhereInput + auctionbidmadeeventownerCuratorGroup_none: AuctionBidMadeEventWhereInput + auctionbidmadeeventownerCuratorGroup_some: AuctionBidMadeEventWhereInput + auctionbidmadeeventownerCuratorGroup_every: AuctionBidMadeEventWhereInput + auctioncanceledeventownerCuratorGroup_none: AuctionCanceledEventWhereInput + auctioncanceledeventownerCuratorGroup_some: AuctionCanceledEventWhereInput + auctioncanceledeventownerCuratorGroup_every: AuctionCanceledEventWhereInput + bidmadecompletingauctioneventownerCuratorGroup_none: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventownerCuratorGroup_some: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventownerCuratorGroup_every: BidMadeCompletingAuctionEventWhereInput + buynowcanceledeventownerCuratorGroup_none: BuyNowCanceledEventWhereInput + buynowcanceledeventownerCuratorGroup_some: BuyNowCanceledEventWhereInput + buynowcanceledeventownerCuratorGroup_every: BuyNowCanceledEventWhereInput + buynowpriceupdatedeventownerCuratorGroup_none: BuyNowPriceUpdatedEventWhereInput + buynowpriceupdatedeventownerCuratorGroup_some: BuyNowPriceUpdatedEventWhereInput + buynowpriceupdatedeventownerCuratorGroup_every: BuyNowPriceUpdatedEventWhereInput + englishauctionsettledeventownerCuratorGroup_none: EnglishAuctionSettledEventWhereInput + englishauctionsettledeventownerCuratorGroup_some: EnglishAuctionSettledEventWhereInput + englishauctionsettledeventownerCuratorGroup_every: EnglishAuctionSettledEventWhereInput + englishauctionstartedeventownerCuratorGroup_none: EnglishAuctionStartedEventWhereInput + englishauctionstartedeventownerCuratorGroup_some: EnglishAuctionStartedEventWhereInput + englishauctionstartedeventownerCuratorGroup_every: EnglishAuctionStartedEventWhereInput + nftboughteventownerCuratorGroup_none: NftBoughtEventWhereInput + nftboughteventownerCuratorGroup_some: NftBoughtEventWhereInput + nftboughteventownerCuratorGroup_every: NftBoughtEventWhereInput + nftissuedeventownerCuratorGroup_none: NftIssuedEventWhereInput + nftissuedeventownerCuratorGroup_some: NftIssuedEventWhereInput + nftissuedeventownerCuratorGroup_every: NftIssuedEventWhereInput + nftsellordermadeeventownerCuratorGroup_none: NftSellOrderMadeEventWhereInput + nftsellordermadeeventownerCuratorGroup_some: NftSellOrderMadeEventWhereInput + nftsellordermadeeventownerCuratorGroup_every: NftSellOrderMadeEventWhereInput + nftslingedbacktotheoriginalartisteventownerCuratorGroup_none: NftSlingedBackToTheOriginalArtistEventWhereInput + nftslingedbacktotheoriginalartisteventownerCuratorGroup_some: NftSlingedBackToTheOriginalArtistEventWhereInput + nftslingedbacktotheoriginalartisteventownerCuratorGroup_every: NftSlingedBackToTheOriginalArtistEventWhereInput + offeracceptedeventownerCuratorGroup_none: OfferAcceptedEventWhereInput + offeracceptedeventownerCuratorGroup_some: OfferAcceptedEventWhereInput + offeracceptedeventownerCuratorGroup_every: OfferAcceptedEventWhereInput + offercanceledeventownerCuratorGroup_none: OfferCanceledEventWhereInput + offercanceledeventownerCuratorGroup_some: OfferCanceledEventWhereInput + offercanceledeventownerCuratorGroup_every: OfferCanceledEventWhereInput + offerstartedeventownerCuratorGroup_none: OfferStartedEventWhereInput + offerstartedeventownerCuratorGroup_some: OfferStartedEventWhereInput + offerstartedeventownerCuratorGroup_every: OfferStartedEventWhereInput + openauctionbidacceptedeventownerCuratorGroup_none: OpenAuctionBidAcceptedEventWhereInput + openauctionbidacceptedeventownerCuratorGroup_some: OpenAuctionBidAcceptedEventWhereInput + openauctionbidacceptedeventownerCuratorGroup_every: OpenAuctionBidAcceptedEventWhereInput + openauctionstartedeventownerCuratorGroup_none: OpenAuctionStartedEventWhereInput + openauctionstartedeventownerCuratorGroup_some: OpenAuctionStartedEventWhereInput + openauctionstartedeventownerCuratorGroup_every: OpenAuctionStartedEventWhereInput + ownednftownerCuratorGroup_none: OwnedNftWhereInput + ownednftownerCuratorGroup_some: OwnedNftWhereInput + ownednftownerCuratorGroup_every: OwnedNftWhereInput + AND: [CuratorGroupWhereInput!] + OR: [CuratorGroupWhereInput!] + NOT: [CuratorGroupWhereInput!] +} + +input CuratorGroupWhereUniqueInput { + id: ID! } -input VideoReactedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - video: ID - videoChannel: ID - reactionResult: VideoReactionOptions - reactingMember: ID +input CuratorGroupCreateInput { + isActive: Boolean! } -input ChannelWhereInput { +input CuratorGroupUpdateInput { + isActive: Boolean +} + +input VideoSubtitleWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16145,168 +15871,45 @@ input ChannelWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - title_eq: String - title_contains: String - title_startsWith: String - title_endsWith: String - title_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - activeVideosCounter_eq: Int - activeVideosCounter_gt: Int - activeVideosCounter_gte: Int - activeVideosCounter_lt: Int - activeVideosCounter_lte: Int - activeVideosCounter_in: [Int!] - isPublic_eq: Boolean - isPublic_in: [Boolean!] - isCensored_eq: Boolean - isCensored_in: [Boolean!] - createdInBlock_eq: Int - createdInBlock_gt: Int - createdInBlock_gte: Int - createdInBlock_lt: Int - createdInBlock_lte: Int - createdInBlock_in: [Int!] - rewardAccount_eq: String - rewardAccount_contains: String - rewardAccount_startsWith: String - rewardAccount_endsWith: String - rewardAccount_in: [String!] - channelStateBloatBond_eq: BigInt - channelStateBloatBond_gt: BigInt - channelStateBloatBond_gte: BigInt - channelStateBloatBond_lt: BigInt - channelStateBloatBond_lte: BigInt - channelStateBloatBond_in: [BigInt!] - privilegeLevel_eq: Int - privilegeLevel_gt: Int - privilegeLevel_gte: Int - privilegeLevel_lt: Int - privilegeLevel_lte: Int - privilegeLevel_in: [Int!] - cumulativeRewardClaimed_eq: BigInt - cumulativeRewardClaimed_gt: BigInt - cumulativeRewardClaimed_gte: BigInt - cumulativeRewardClaimed_lt: BigInt - cumulativeRewardClaimed_lte: BigInt - cumulativeRewardClaimed_in: [BigInt!] - totalVideosCreated_eq: Int - totalVideosCreated_gt: Int - totalVideosCreated_gte: Int - totalVideosCreated_lt: Int - totalVideosCreated_lte: Int - totalVideosCreated_in: [Int!] - entryApp: AppWhereInput - ownerMember: MembershipWhereInput - ownerCuratorGroup: CuratorGroupWhereInput - coverPhoto: StorageDataObjectWhereInput - avatarPhoto: StorageDataObjectWhereInput + type_eq: String + type_contains: String + type_startsWith: String + type_endsWith: String + type_in: [String!] + mimeType_eq: String + mimeType_contains: String + mimeType_startsWith: String + mimeType_endsWith: String + mimeType_in: [String!] + video: VideoWhereInput language: LanguageWhereInput - videos_none: VideoWhereInput - videos_some: VideoWhereInput - videos_every: VideoWhereInput - collaborators_none: CollaboratorWhereInput - collaborators_some: CollaboratorWhereInput - collaborators_every: CollaboratorWhereInput - bannedMembers_none: MembershipWhereInput - bannedMembers_some: MembershipWhereInput - bannedMembers_every: MembershipWhereInput - channelNftCollectors_none: ChannelNftCollectorsWhereInput - channelNftCollectors_some: ChannelNftCollectorsWhereInput - channelNftCollectors_every: ChannelNftCollectorsWhereInput - claimedRewards_none: ChannelRewardClaimedEventWhereInput - claimedRewards_some: ChannelRewardClaimedEventWhereInput - claimedRewards_every: ChannelRewardClaimedEventWhereInput - channelfundswithdrawneventchannel_none: ChannelFundsWithdrawnEventWhereInput - channelfundswithdrawneventchannel_some: ChannelFundsWithdrawnEventWhereInput - channelfundswithdrawneventchannel_every: ChannelFundsWithdrawnEventWhereInput - channelpaymentmadeeventpayeeChannel_none: ChannelPaymentMadeEventWhereInput - channelpaymentmadeeventpayeeChannel_some: ChannelPaymentMadeEventWhereInput - channelpaymentmadeeventpayeeChannel_every: ChannelPaymentMadeEventWhereInput - channelrewardclaimedandwithdrawneventchannel_none: ChannelRewardClaimedAndWithdrawnEventWhereInput - channelrewardclaimedandwithdrawneventchannel_some: ChannelRewardClaimedAndWithdrawnEventWhereInput - channelrewardclaimedandwithdrawneventchannel_every: ChannelRewardClaimedAndWithdrawnEventWhereInput - commentcreatedeventvideoChannel_none: CommentCreatedEventWhereInput - commentcreatedeventvideoChannel_some: CommentCreatedEventWhereInput - commentcreatedeventvideoChannel_every: CommentCreatedEventWhereInput - commentdeletedeventvideoChannel_none: CommentDeletedEventWhereInput - commentdeletedeventvideoChannel_some: CommentDeletedEventWhereInput - commentdeletedeventvideoChannel_every: CommentDeletedEventWhereInput - commentmoderatedeventvideoChannel_none: CommentModeratedEventWhereInput - commentmoderatedeventvideoChannel_some: CommentModeratedEventWhereInput - commentmoderatedeventvideoChannel_every: CommentModeratedEventWhereInput - commentpinnedeventvideoChannel_none: CommentPinnedEventWhereInput - commentpinnedeventvideoChannel_some: CommentPinnedEventWhereInput - commentpinnedeventvideoChannel_every: CommentPinnedEventWhereInput - commentreactedeventvideoChannel_none: CommentReactedEventWhereInput - commentreactedeventvideoChannel_some: CommentReactedEventWhereInput - commentreactedeventvideoChannel_every: CommentReactedEventWhereInput - commenttextupdatedeventvideoChannel_none: CommentTextUpdatedEventWhereInput - commenttextupdatedeventvideoChannel_some: CommentTextUpdatedEventWhereInput - commenttextupdatedeventvideoChannel_every: CommentTextUpdatedEventWhereInput - memberbannedfromchanneleventchannel_none: MemberBannedFromChannelEventWhereInput - memberbannedfromchanneleventchannel_some: MemberBannedFromChannelEventWhereInput - memberbannedfromchanneleventchannel_every: MemberBannedFromChannelEventWhereInput - ownednftcreatorChannel_none: OwnedNftWhereInput - ownednftcreatorChannel_some: OwnedNftWhereInput - ownednftcreatorChannel_every: OwnedNftWhereInput - videoreactedeventvideoChannel_none: VideoReactedEventWhereInput - videoreactedeventvideoChannel_some: VideoReactedEventWhereInput - videoreactedeventvideoChannel_every: VideoReactedEventWhereInput - AND: [ChannelWhereInput!] - OR: [ChannelWhereInput!] - NOT: [ChannelWhereInput!] + asset: StorageDataObjectWhereInput + AND: [VideoSubtitleWhereInput!] + OR: [VideoSubtitleWhereInput!] + NOT: [VideoSubtitleWhereInput!] } -input ChannelWhereUniqueInput { +input VideoSubtitleWhereUniqueInput { id: ID! } -input ChannelCreateInput { - entryApp: ID - ownerMember: ID - ownerCuratorGroup: ID - title: String - description: String - activeVideosCounter: Float! - coverPhoto: ID - avatarPhoto: ID - isPublic: Boolean - isCensored: Boolean! +input VideoSubtitleCreateInput { + video: ID! + type: String! language: ID - createdInBlock: Float! - rewardAccount: String! - channelStateBloatBond: String! - privilegeLevel: Float - cumulativeRewardClaimed: String - totalVideosCreated: Float! + mimeType: String! + asset: ID } -input ChannelUpdateInput { - entryApp: ID - ownerMember: ID - ownerCuratorGroup: ID - title: String - description: String - activeVideosCounter: Float - coverPhoto: ID - avatarPhoto: ID - isPublic: Boolean - isCensored: Boolean +input VideoSubtitleUpdateInput { + video: ID + type: String language: ID - createdInBlock: Float - rewardAccount: String - channelStateBloatBond: String - privilegeLevel: Float - cumulativeRewardClaimed: String - totalVideosCreated: Float + mimeType: String + asset: ID } -input LicenseWhereInput { +input LanguageWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16331,47 +15934,46 @@ input LicenseWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - code_eq: Int - code_gt: Int - code_gte: Int - code_lt: Int - code_lte: Int - code_in: [Int!] - attribution_eq: String - attribution_contains: String - attribution_startsWith: String - attribution_endsWith: String - attribution_in: [String!] - customText_eq: String - customText_contains: String - customText_startsWith: String - customText_endsWith: String - customText_in: [String!] - videolicense_none: VideoWhereInput - videolicense_some: VideoWhereInput - videolicense_every: VideoWhereInput - AND: [LicenseWhereInput!] - OR: [LicenseWhereInput!] - NOT: [LicenseWhereInput!] + iso_eq: String + iso_contains: String + iso_startsWith: String + iso_endsWith: String + iso_in: [String!] + createdInBlock_eq: Int + createdInBlock_gt: Int + createdInBlock_gte: Int + createdInBlock_lt: Int + createdInBlock_lte: Int + createdInBlock_in: [Int!] + channellanguage_none: ChannelWhereInput + channellanguage_some: ChannelWhereInput + channellanguage_every: ChannelWhereInput + videolanguage_none: VideoWhereInput + videolanguage_some: VideoWhereInput + videolanguage_every: VideoWhereInput + videosubtitlelanguage_none: VideoSubtitleWhereInput + videosubtitlelanguage_some: VideoSubtitleWhereInput + videosubtitlelanguage_every: VideoSubtitleWhereInput + AND: [LanguageWhereInput!] + OR: [LanguageWhereInput!] + NOT: [LanguageWhereInput!] } -input LicenseWhereUniqueInput { +input LanguageWhereUniqueInput { id: ID! } -input LicenseCreateInput { - code: Float - attribution: String - customText: String +input LanguageCreateInput { + iso: String! + createdInBlock: Float! } -input LicenseUpdateInput { - code: Float - attribution: String - customText: String +input LanguageUpdateInput { + iso: String + createdInBlock: Float } -input VideoMediaEncodingWhereInput { +input CollaboratorWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16396,46 +15998,33 @@ input VideoMediaEncodingWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - codecName_eq: String - codecName_contains: String - codecName_startsWith: String - codecName_endsWith: String - codecName_in: [String!] - container_eq: String - container_contains: String - container_startsWith: String - container_endsWith: String - container_in: [String!] - mimeMediaType_eq: String - mimeMediaType_contains: String - mimeMediaType_startsWith: String - mimeMediaType_endsWith: String - mimeMediaType_in: [String!] - videomediametadataencoding_none: VideoMediaMetadataWhereInput - videomediametadataencoding_some: VideoMediaMetadataWhereInput - videomediametadataencoding_every: VideoMediaMetadataWhereInput - AND: [VideoMediaEncodingWhereInput!] - OR: [VideoMediaEncodingWhereInput!] - NOT: [VideoMediaEncodingWhereInput!] + permissions_containsAll: [String!] + permissions_containsNone: [String!] + permissions_containsAny: [String!] + channel: ChannelWhereInput + member: MembershipWhereInput + AND: [CollaboratorWhereInput!] + OR: [CollaboratorWhereInput!] + NOT: [CollaboratorWhereInput!] } -input VideoMediaEncodingWhereUniqueInput { +input CollaboratorWhereUniqueInput { id: ID! } -input VideoMediaEncodingCreateInput { - codecName: String - container: String - mimeMediaType: String +input CollaboratorCreateInput { + channel: ID! + member: ID! + permissions: [String!]! } -input VideoMediaEncodingUpdateInput { - codecName: String - container: String - mimeMediaType: String +input CollaboratorUpdateInput { + channel: ID + member: ID + permissions: [String!] } -input VideoMediaMetadataWhereInput { +input ChannelRewardClaimedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16460,58 +16049,60 @@ input VideoMediaMetadataWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - pixelWidth_eq: Int - pixelWidth_gt: Int - pixelWidth_gte: Int - pixelWidth_lt: Int - pixelWidth_lte: Int - pixelWidth_in: [Int!] - pixelHeight_eq: Int - pixelHeight_gt: Int - pixelHeight_gte: Int - pixelHeight_lt: Int - pixelHeight_lte: Int - pixelHeight_in: [Int!] - size_eq: BigInt - size_gt: BigInt - size_gte: BigInt - size_lt: BigInt - size_lte: BigInt - size_in: [BigInt!] - createdInBlock_eq: Int - createdInBlock_gt: Int - createdInBlock_gte: Int - createdInBlock_lt: Int - createdInBlock_lte: Int - createdInBlock_in: [Int!] - encoding: VideoMediaEncodingWhereInput - video: VideoWhereInput - AND: [VideoMediaMetadataWhereInput!] - OR: [VideoMediaMetadataWhereInput!] - NOT: [VideoMediaMetadataWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + channel: ChannelWhereInput + AND: [ChannelRewardClaimedEventWhereInput!] + OR: [ChannelRewardClaimedEventWhereInput!] + NOT: [ChannelRewardClaimedEventWhereInput!] } -input VideoMediaMetadataWhereUniqueInput { +input ChannelRewardClaimedEventWhereUniqueInput { id: ID! } -input VideoMediaMetadataCreateInput { - encoding: ID - pixelWidth: Float - pixelHeight: Float - size: String - createdInBlock: Float! +input ChannelRewardClaimedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + channel: ID! + amount: String! } -input VideoMediaMetadataUpdateInput { - encoding: ID - pixelWidth: Float - pixelHeight: Float - size: String - createdInBlock: Float +input ChannelRewardClaimedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + channel: ID + amount: String } -input VideoReactionWhereInput { +input ChannelFundsWithdrawnEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16536,39 +16127,70 @@ input VideoReactionWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - reaction_eq: VideoReactionOptions - reaction_in: [VideoReactionOptions!] - memberId_eq: String - memberId_contains: String - memberId_startsWith: String - memberId_endsWith: String - memberId_in: [String!] - member: MembershipWhereInput - video: VideoWhereInput - AND: [VideoReactionWhereInput!] - OR: [VideoReactionWhereInput!] - NOT: [VideoReactionWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + account_eq: String + account_contains: String + account_startsWith: String + account_endsWith: String + account_in: [String!] + actor_json: JSONObject + channel: ChannelWhereInput + AND: [ChannelFundsWithdrawnEventWhereInput!] + OR: [ChannelFundsWithdrawnEventWhereInput!] + NOT: [ChannelFundsWithdrawnEventWhereInput!] } -input VideoReactionWhereUniqueInput { +input ChannelFundsWithdrawnEventWhereUniqueInput { id: ID! } -input VideoReactionCreateInput { - reaction: VideoReactionOptions! - member: ID! - memberId: String! - video: ID! +input ChannelFundsWithdrawnEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + channel: ID! + amount: String! + account: String + actor: JSONObject! } -input VideoReactionUpdateInput { - reaction: VideoReactionOptions - member: ID - memberId: String - video: ID +input ChannelFundsWithdrawnEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + channel: ID + amount: String + account: String + actor: JSONObject } -input VideoReactionsCountByReactionTypeWhereInput { +input ChannelPaymentMadeEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16593,37 +16215,73 @@ input VideoReactionsCountByReactionTypeWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - reaction_eq: VideoReactionOptions - reaction_in: [VideoReactionOptions!] - count_eq: Int - count_gt: Int - count_gte: Int - count_lt: Int - count_lte: Int - count_in: [Int!] - video: VideoWhereInput - AND: [VideoReactionsCountByReactionTypeWhereInput!] - OR: [VideoReactionsCountByReactionTypeWhereInput!] - NOT: [VideoReactionsCountByReactionTypeWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + paymentContext_json: JSONObject + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + payer: MembershipWhereInput + payeeChannel: ChannelWhereInput + AND: [ChannelPaymentMadeEventWhereInput!] + OR: [ChannelPaymentMadeEventWhereInput!] + NOT: [ChannelPaymentMadeEventWhereInput!] } -input VideoReactionsCountByReactionTypeWhereUniqueInput { +input ChannelPaymentMadeEventWhereUniqueInput { id: ID! } -input VideoReactionsCountByReactionTypeCreateInput { - reaction: VideoReactionOptions! - count: Float! - video: ID! +input ChannelPaymentMadeEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + payer: ID! + amount: String! + paymentContext: JSONObject! + payeeChannel: ID + rationale: String } -input VideoReactionsCountByReactionTypeUpdateInput { - reaction: VideoReactionOptions - count: Float - video: ID +input ChannelPaymentMadeEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + payer: ID + amount: String + paymentContext: JSONObject + payeeChannel: ID + rationale: String } -input VideoReactionsPreferenceEventWhereInput { +input ChannelRewardClaimedAndWithdrawnEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16667,37 +16325,51 @@ input VideoReactionsPreferenceEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - reactionsStatus_eq: Boolean - reactionsStatus_in: [Boolean!] - video: VideoWhereInput - AND: [VideoReactionsPreferenceEventWhereInput!] - OR: [VideoReactionsPreferenceEventWhereInput!] - NOT: [VideoReactionsPreferenceEventWhereInput!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + account_eq: String + account_contains: String + account_startsWith: String + account_endsWith: String + account_in: [String!] + actor_json: JSONObject + channel: ChannelWhereInput + AND: [ChannelRewardClaimedAndWithdrawnEventWhereInput!] + OR: [ChannelRewardClaimedAndWithdrawnEventWhereInput!] + NOT: [ChannelRewardClaimedAndWithdrawnEventWhereInput!] } -input VideoReactionsPreferenceEventWhereUniqueInput { +input ChannelRewardClaimedAndWithdrawnEventWhereUniqueInput { id: ID! } -input VideoReactionsPreferenceEventCreateInput { +input ChannelRewardClaimedAndWithdrawnEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - video: ID! - reactionsStatus: Boolean! + channel: ID! + amount: String! + account: String + actor: JSONObject! } -input VideoReactionsPreferenceEventUpdateInput { +input ChannelRewardClaimedAndWithdrawnEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - video: ID - reactionsStatus: Boolean + channel: ID + amount: String + account: String + actor: JSONObject } -input VideoWhereInput { +input CommentReactionWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16717,240 +16389,113 @@ input VideoWhereInput { deletedAt_all: Boolean deletedAt_eq: DateTime deletedAt_lt: DateTime - deletedAt_lte: DateTime - deletedAt_gt: DateTime - deletedAt_gte: DateTime - deletedById_eq: ID - deletedById_in: [ID!] - title_eq: String - title_contains: String - title_startsWith: String - title_endsWith: String - title_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - duration_eq: Int - duration_gt: Int - duration_gte: Int - duration_lt: Int - duration_lte: Int - duration_in: [Int!] - hasMarketing_eq: Boolean - hasMarketing_in: [Boolean!] - publishedBeforeJoystream_eq: DateTime - publishedBeforeJoystream_lt: DateTime - publishedBeforeJoystream_lte: DateTime - publishedBeforeJoystream_gt: DateTime - publishedBeforeJoystream_gte: DateTime - isPublic_eq: Boolean - isPublic_in: [Boolean!] - isCensored_eq: Boolean - isCensored_in: [Boolean!] - isExplicit_eq: Boolean - isExplicit_in: [Boolean!] - videoStateBloatBond_eq: BigInt - videoStateBloatBond_gt: BigInt - videoStateBloatBond_gte: BigInt - videoStateBloatBond_lt: BigInt - videoStateBloatBond_lte: BigInt - videoStateBloatBond_in: [BigInt!] - createdInBlock_eq: Int - createdInBlock_gt: Int - createdInBlock_gte: Int - createdInBlock_lt: Int - createdInBlock_lte: Int - createdInBlock_in: [Int!] - isCommentSectionEnabled_eq: Boolean - isCommentSectionEnabled_in: [Boolean!] - commentsCount_eq: Int - commentsCount_gt: Int - commentsCount_gte: Int - commentsCount_lt: Int - commentsCount_lte: Int - commentsCount_in: [Int!] - isReactionFeatureEnabled_eq: Boolean - isReactionFeatureEnabled_in: [Boolean!] - reactionsCount_eq: Int - reactionsCount_gt: Int - reactionsCount_gte: Int - reactionsCount_lt: Int - reactionsCount_lte: Int - reactionsCount_in: [Int!] - ytVideoId_eq: String - ytVideoId_contains: String - ytVideoId_startsWith: String - ytVideoId_endsWith: String - ytVideoId_in: [String!] - entryApp: AppWhereInput - channel: ChannelWhereInput - category: VideoCategoryWhereInput - thumbnailPhoto: StorageDataObjectWhereInput - language: LanguageWhereInput - nft: OwnedNftWhereInput - license: LicenseWhereInput - media: StorageDataObjectWhereInput - mediaMetadata: VideoMediaMetadataWhereInput - subtitles_none: VideoSubtitleWhereInput - subtitles_some: VideoSubtitleWhereInput - subtitles_every: VideoSubtitleWhereInput - pinnedComment: CommentWhereInput - comments_none: CommentWhereInput - comments_some: CommentWhereInput - comments_every: CommentWhereInput - reactions_none: VideoReactionWhereInput - reactions_some: VideoReactionWhereInput - reactions_every: VideoReactionWhereInput - reactionsCountByReactionId_none: VideoReactionsCountByReactionTypeWhereInput - reactionsCountByReactionId_some: VideoReactionsCountByReactionTypeWhereInput - reactionsCountByReactionId_every: VideoReactionsCountByReactionTypeWhereInput - auctionbidcanceledeventvideo_none: AuctionBidCanceledEventWhereInput - auctionbidcanceledeventvideo_some: AuctionBidCanceledEventWhereInput - auctionbidcanceledeventvideo_every: AuctionBidCanceledEventWhereInput - auctionbidmadeeventvideo_none: AuctionBidMadeEventWhereInput - auctionbidmadeeventvideo_some: AuctionBidMadeEventWhereInput - auctionbidmadeeventvideo_every: AuctionBidMadeEventWhereInput - auctioncanceledeventvideo_none: AuctionCanceledEventWhereInput - auctioncanceledeventvideo_some: AuctionCanceledEventWhereInput - auctioncanceledeventvideo_every: AuctionCanceledEventWhereInput - bidmadecompletingauctioneventvideo_none: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventvideo_some: BidMadeCompletingAuctionEventWhereInput - bidmadecompletingauctioneventvideo_every: BidMadeCompletingAuctionEventWhereInput - buynowcanceledeventvideo_none: BuyNowCanceledEventWhereInput - buynowcanceledeventvideo_some: BuyNowCanceledEventWhereInput - buynowcanceledeventvideo_every: BuyNowCanceledEventWhereInput - buynowpriceupdatedeventvideo_none: BuyNowPriceUpdatedEventWhereInput - buynowpriceupdatedeventvideo_some: BuyNowPriceUpdatedEventWhereInput - buynowpriceupdatedeventvideo_every: BuyNowPriceUpdatedEventWhereInput - commentcreatedeventvideo_none: CommentCreatedEventWhereInput - commentcreatedeventvideo_some: CommentCreatedEventWhereInput - commentcreatedeventvideo_every: CommentCreatedEventWhereInput - commentdeletedeventvideo_none: CommentDeletedEventWhereInput - commentdeletedeventvideo_some: CommentDeletedEventWhereInput - commentdeletedeventvideo_every: CommentDeletedEventWhereInput - commentmoderatedeventvideo_none: CommentModeratedEventWhereInput - commentmoderatedeventvideo_some: CommentModeratedEventWhereInput - commentmoderatedeventvideo_every: CommentModeratedEventWhereInput - commentpinnedeventvideo_none: CommentPinnedEventWhereInput - commentpinnedeventvideo_some: CommentPinnedEventWhereInput - commentpinnedeventvideo_every: CommentPinnedEventWhereInput - commentreactedeventvideo_none: CommentReactedEventWhereInput - commentreactedeventvideo_some: CommentReactedEventWhereInput - commentreactedeventvideo_every: CommentReactedEventWhereInput - commentreactionvideo_none: CommentReactionWhereInput - commentreactionvideo_some: CommentReactionWhereInput - commentreactionvideo_every: CommentReactionWhereInput - commentreactionscountbyreactionidvideo_none: CommentReactionsCountByReactionIdWhereInput - commentreactionscountbyreactionidvideo_some: CommentReactionsCountByReactionIdWhereInput - commentreactionscountbyreactionidvideo_every: CommentReactionsCountByReactionIdWhereInput - commenttextupdatedeventvideo_none: CommentTextUpdatedEventWhereInput - commenttextupdatedeventvideo_some: CommentTextUpdatedEventWhereInput - commenttextupdatedeventvideo_every: CommentTextUpdatedEventWhereInput - englishauctionsettledeventvideo_none: EnglishAuctionSettledEventWhereInput - englishauctionsettledeventvideo_some: EnglishAuctionSettledEventWhereInput - englishauctionsettledeventvideo_every: EnglishAuctionSettledEventWhereInput - englishauctionstartedeventvideo_none: EnglishAuctionStartedEventWhereInput - englishauctionstartedeventvideo_some: EnglishAuctionStartedEventWhereInput - englishauctionstartedeventvideo_every: EnglishAuctionStartedEventWhereInput - nftboughteventvideo_none: NftBoughtEventWhereInput - nftboughteventvideo_some: NftBoughtEventWhereInput - nftboughteventvideo_every: NftBoughtEventWhereInput - nftissuedeventvideo_none: NftIssuedEventWhereInput - nftissuedeventvideo_some: NftIssuedEventWhereInput - nftissuedeventvideo_every: NftIssuedEventWhereInput - nftsellordermadeeventvideo_none: NftSellOrderMadeEventWhereInput - nftsellordermadeeventvideo_some: NftSellOrderMadeEventWhereInput - nftsellordermadeeventvideo_every: NftSellOrderMadeEventWhereInput - nftslingedbacktotheoriginalartisteventvideo_none: NftSlingedBackToTheOriginalArtistEventWhereInput - nftslingedbacktotheoriginalartisteventvideo_some: NftSlingedBackToTheOriginalArtistEventWhereInput - nftslingedbacktotheoriginalartisteventvideo_every: NftSlingedBackToTheOriginalArtistEventWhereInput - offeracceptedeventvideo_none: OfferAcceptedEventWhereInput - offeracceptedeventvideo_some: OfferAcceptedEventWhereInput - offeracceptedeventvideo_every: OfferAcceptedEventWhereInput - offercanceledeventvideo_none: OfferCanceledEventWhereInput - offercanceledeventvideo_some: OfferCanceledEventWhereInput - offercanceledeventvideo_every: OfferCanceledEventWhereInput - offerstartedeventvideo_none: OfferStartedEventWhereInput - offerstartedeventvideo_some: OfferStartedEventWhereInput - offerstartedeventvideo_every: OfferStartedEventWhereInput - openauctionbidacceptedeventvideo_none: OpenAuctionBidAcceptedEventWhereInput - openauctionbidacceptedeventvideo_some: OpenAuctionBidAcceptedEventWhereInput - openauctionbidacceptedeventvideo_every: OpenAuctionBidAcceptedEventWhereInput - openauctionstartedeventvideo_none: OpenAuctionStartedEventWhereInput - openauctionstartedeventvideo_some: OpenAuctionStartedEventWhereInput - openauctionstartedeventvideo_every: OpenAuctionStartedEventWhereInput - videoreactedeventvideo_none: VideoReactedEventWhereInput - videoreactedeventvideo_some: VideoReactedEventWhereInput - videoreactedeventvideo_every: VideoReactedEventWhereInput - videoreactionspreferenceeventvideo_none: VideoReactionsPreferenceEventWhereInput - videoreactionspreferenceeventvideo_some: VideoReactionsPreferenceEventWhereInput - videoreactionspreferenceeventvideo_every: VideoReactionsPreferenceEventWhereInput - AND: [VideoWhereInput!] - OR: [VideoWhereInput!] - NOT: [VideoWhereInput!] + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + reactionId_eq: Int + reactionId_gt: Int + reactionId_gte: Int + reactionId_lt: Int + reactionId_lte: Int + reactionId_in: [Int!] + memberId_eq: String + memberId_contains: String + memberId_startsWith: String + memberId_endsWith: String + memberId_in: [String!] + member: MembershipWhereInput + comment: CommentWhereInput + video: VideoWhereInput + AND: [CommentReactionWhereInput!] + OR: [CommentReactionWhereInput!] + NOT: [CommentReactionWhereInput!] } -input VideoWhereUniqueInput { +input CommentReactionWhereUniqueInput { id: ID! } -input VideoCreateInput { - entryApp: ID - channel: ID! - category: ID - title: String - description: String - duration: Float - thumbnailPhoto: ID - language: ID - hasMarketing: Boolean - publishedBeforeJoystream: DateTime - isPublic: Boolean - isCensored: Boolean! - nft: ID - isExplicit: Boolean - license: ID - media: ID - videoStateBloatBond: String! - mediaMetadata: ID - createdInBlock: Float! - isCommentSectionEnabled: Boolean! - commentsCount: Float! - isReactionFeatureEnabled: Boolean! - reactionsCount: Float! - ytVideoId: String +input CommentReactionCreateInput { + reactionId: Float! + member: ID! + memberId: String! + comment: ID! + video: ID! } -input VideoUpdateInput { - entryApp: ID - channel: ID - category: ID - title: String - description: String - duration: Float - thumbnailPhoto: ID - language: ID - hasMarketing: Boolean - publishedBeforeJoystream: DateTime - isPublic: Boolean - isCensored: Boolean - nft: ID - isExplicit: Boolean - license: ID - media: ID - videoStateBloatBond: String - mediaMetadata: ID - createdInBlock: Float - isCommentSectionEnabled: Boolean - commentsCount: Float - isReactionFeatureEnabled: Boolean - reactionsCount: Float - ytVideoId: String +input CommentReactionUpdateInput { + reactionId: Float + member: ID + memberId: String + comment: ID + video: ID } -input ChannelPayoutsUpdatedEventWhereInput { +input CommentReactionsCountByReactionIdWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + reactionId_eq: Int + reactionId_gt: Int + reactionId_gte: Int + reactionId_lt: Int + reactionId_lte: Int + reactionId_in: [Int!] + count_eq: Int + count_gt: Int + count_gte: Int + count_lt: Int + count_lte: Int + count_in: [Int!] + comment: CommentWhereInput + video: VideoWhereInput + AND: [CommentReactionsCountByReactionIdWhereInput!] + OR: [CommentReactionsCountByReactionIdWhereInput!] + NOT: [CommentReactionsCountByReactionIdWhereInput!] +} + +input CommentReactionsCountByReactionIdWhereUniqueInput { + id: ID! +} + +input CommentReactionsCountByReactionIdCreateInput { + reactionId: Float! + count: Float! + comment: ID! + video: ID! +} + +input CommentReactionsCountByReactionIdUpdateInput { + reactionId: Float + count: Float + comment: ID + video: ID +} + +input CommentTextUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -16994,75 +16539,122 @@ input ChannelPayoutsUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - commitment_eq: String - commitment_contains: String - commitment_startsWith: String - commitment_endsWith: String - commitment_in: [String!] - payloadSize_eq: BigInt - payloadSize_gt: BigInt - payloadSize_gte: BigInt - payloadSize_lt: BigInt - payloadSize_lte: BigInt - payloadSize_in: [BigInt!] - payloadHash_eq: String - payloadHash_contains: String - payloadHash_startsWith: String - payloadHash_endsWith: String - payloadHash_in: [String!] - minCashoutAllowed_eq: BigInt - minCashoutAllowed_gt: BigInt - minCashoutAllowed_gte: BigInt - minCashoutAllowed_lt: BigInt - minCashoutAllowed_lte: BigInt - minCashoutAllowed_in: [BigInt!] - maxCashoutAllowed_eq: BigInt - maxCashoutAllowed_gt: BigInt - maxCashoutAllowed_gte: BigInt - maxCashoutAllowed_lt: BigInt - maxCashoutAllowed_lte: BigInt - maxCashoutAllowed_in: [BigInt!] - channelCashoutsEnabled_eq: Boolean - channelCashoutsEnabled_in: [Boolean!] - payloadDataObject: StorageDataObjectWhereInput - AND: [ChannelPayoutsUpdatedEventWhereInput!] - OR: [ChannelPayoutsUpdatedEventWhereInput!] - NOT: [ChannelPayoutsUpdatedEventWhereInput!] + newText_eq: String + newText_contains: String + newText_startsWith: String + newText_endsWith: String + newText_in: [String!] + comment: CommentWhereInput + video: VideoWhereInput + videoChannel: ChannelWhereInput + AND: [CommentTextUpdatedEventWhereInput!] + OR: [CommentTextUpdatedEventWhereInput!] + NOT: [CommentTextUpdatedEventWhereInput!] +} + +input CommentTextUpdatedEventWhereUniqueInput { + id: ID! +} + +input CommentTextUpdatedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + comment: ID! + video: ID! + videoChannel: ID! + newText: String! +} + +input CommentTextUpdatedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + comment: ID + video: ID + videoChannel: ID + newText: String +} + +input CommentDeletedEventWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + comment: CommentWhereInput + video: VideoWhereInput + videoChannel: ChannelWhereInput + AND: [CommentDeletedEventWhereInput!] + OR: [CommentDeletedEventWhereInput!] + NOT: [CommentDeletedEventWhereInput!] } -input ChannelPayoutsUpdatedEventWhereUniqueInput { +input CommentDeletedEventWhereUniqueInput { id: ID! } -input ChannelPayoutsUpdatedEventCreateInput { +input CommentDeletedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - commitment: String - payloadDataObject: ID - payloadSize: String - payloadHash: String - minCashoutAllowed: String - maxCashoutAllowed: String - channelCashoutsEnabled: Boolean + comment: ID! + video: ID! + videoChannel: ID! } -input ChannelPayoutsUpdatedEventUpdateInput { +input CommentDeletedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - commitment: String - payloadDataObject: ID - payloadSize: String - payloadHash: String - minCashoutAllowed: String - maxCashoutAllowed: String - channelCashoutsEnabled: Boolean + comment: ID + video: ID + videoChannel: ID } -input StorageDataObjectWhereInput { +input CommentModeratedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17087,74 +16679,68 @@ input StorageDataObjectWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - isAccepted_eq: Boolean - isAccepted_in: [Boolean!] - size_eq: BigInt - size_gt: BigInt - size_gte: BigInt - size_lt: BigInt - size_lte: BigInt - size_in: [BigInt!] - ipfsHash_eq: String - ipfsHash_contains: String - ipfsHash_startsWith: String - ipfsHash_endsWith: String - ipfsHash_in: [String!] - type_json: JSONObject - stateBloatBond_eq: BigInt - stateBloatBond_gt: BigInt - stateBloatBond_gte: BigInt - stateBloatBond_lt: BigInt - stateBloatBond_lte: BigInt - stateBloatBond_in: [BigInt!] - unsetAt_eq: DateTime - unsetAt_lt: DateTime - unsetAt_lte: DateTime - unsetAt_gt: DateTime - unsetAt_gte: DateTime - storageBag: StorageBagWhereInput - videoThumbnail: VideoWhereInput - videoMedia: VideoWhereInput - videoSubtitle: VideoSubtitleWhereInput - channelcoverPhoto_none: ChannelWhereInput - channelcoverPhoto_some: ChannelWhereInput - channelcoverPhoto_every: ChannelWhereInput - channelavatarPhoto_none: ChannelWhereInput - channelavatarPhoto_some: ChannelWhereInput - channelavatarPhoto_every: ChannelWhereInput - channelpayoutsupdatedeventpayloadDataObject_none: ChannelPayoutsUpdatedEventWhereInput - channelpayoutsupdatedeventpayloadDataObject_some: ChannelPayoutsUpdatedEventWhereInput - channelpayoutsupdatedeventpayloadDataObject_every: ChannelPayoutsUpdatedEventWhereInput - AND: [StorageDataObjectWhereInput!] - OR: [StorageDataObjectWhereInput!] - NOT: [StorageDataObjectWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + actor_json: JSONObject + rationale_eq: String + rationale_contains: String + rationale_startsWith: String + rationale_endsWith: String + rationale_in: [String!] + comment: CommentWhereInput + video: VideoWhereInput + videoChannel: ChannelWhereInput + AND: [CommentModeratedEventWhereInput!] + OR: [CommentModeratedEventWhereInput!] + NOT: [CommentModeratedEventWhereInput!] } -input StorageDataObjectWhereUniqueInput { +input CommentModeratedEventWhereUniqueInput { id: ID! } -input StorageDataObjectCreateInput { - isAccepted: Boolean! - size: String! - storageBag: ID! - ipfsHash: String! - type: JSONObject! - stateBloatBond: String! - unsetAt: DateTime +input CommentModeratedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + comment: ID! + video: ID! + videoChannel: ID! + actor: JSONObject! + rationale: String! } -input StorageDataObjectUpdateInput { - isAccepted: Boolean - size: String - storageBag: ID - ipfsHash: String - type: JSONObject - stateBloatBond: String - unsetAt: DateTime +input CommentModeratedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + comment: ID + video: ID + videoChannel: ID + actor: JSONObject + rationale: String } -input FundingRequestDestinationWhereInput { +input CommentPinnedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17179,40 +16765,62 @@ input FundingRequestDestinationWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - amount_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - account_eq: String - account_contains: String - account_startsWith: String - account_endsWith: String - account_in: [String!] - list: FundingRequestDestinationsListWhereInput - AND: [FundingRequestDestinationWhereInput!] - OR: [FundingRequestDestinationWhereInput!] - NOT: [FundingRequestDestinationWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + action_eq: Boolean + action_in: [Boolean!] + comment: CommentWhereInput + video: VideoWhereInput + videoChannel: ChannelWhereInput + AND: [CommentPinnedEventWhereInput!] + OR: [CommentPinnedEventWhereInput!] + NOT: [CommentPinnedEventWhereInput!] } -input FundingRequestDestinationWhereUniqueInput { +input CommentPinnedEventWhereUniqueInput { id: ID! } -input FundingRequestDestinationCreateInput { - amount: String! - account: String! - list: ID! +input CommentPinnedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + comment: ID! + video: ID! + videoChannel: ID! + action: Boolean! } -input FundingRequestDestinationUpdateInput { - amount: String - account: String - list: ID +input CommentPinnedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + comment: ID + video: ID + videoChannel: ID + action: Boolean } -input FundingRequestDestinationsListWhereInput { +input CommentReactedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17237,33 +16845,69 @@ input FundingRequestDestinationsListWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - phantom_eq: Int - phantom_gt: Int - phantom_gte: Int - phantom_lt: Int - phantom_lte: Int - phantom_in: [Int!] - destinations_none: FundingRequestDestinationWhereInput - destinations_some: FundingRequestDestinationWhereInput - destinations_every: FundingRequestDestinationWhereInput - AND: [FundingRequestDestinationsListWhereInput!] - OR: [FundingRequestDestinationsListWhereInput!] - NOT: [FundingRequestDestinationsListWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + reactionResult_eq: Int + reactionResult_gt: Int + reactionResult_gte: Int + reactionResult_lt: Int + reactionResult_lte: Int + reactionResult_in: [Int!] + comment: CommentWhereInput + video: VideoWhereInput + videoChannel: ChannelWhereInput + reactingMember: MembershipWhereInput + AND: [CommentReactedEventWhereInput!] + OR: [CommentReactedEventWhereInput!] + NOT: [CommentReactedEventWhereInput!] } -input FundingRequestDestinationsListWhereUniqueInput { +input CommentReactedEventWhereUniqueInput { id: ID! } -input FundingRequestDestinationsListCreateInput { - phantom: Float +input CommentReactedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + comment: ID! + video: ID! + videoChannel: ID! + reactionResult: Float! + reactingMember: ID! } -input FundingRequestDestinationsListUpdateInput { - phantom: Float +input CommentReactedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + comment: ID + video: ID + videoChannel: ID + reactionResult: Float + reactingMember: ID } -input MembershipExternalResourceWhereInput { +input CommentWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17288,39 +16932,93 @@ input MembershipExternalResourceWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - type_eq: MembershipExternalResourceType - type_in: [MembershipExternalResourceType!] - value_eq: String - value_contains: String - value_startsWith: String - value_endsWith: String - value_in: [String!] - memberMetadata: MemberMetadataWhereInput - member: MembershipWhereInput - AND: [MembershipExternalResourceWhereInput!] - OR: [MembershipExternalResourceWhereInput!] - NOT: [MembershipExternalResourceWhereInput!] + text_eq: String + text_contains: String + text_startsWith: String + text_endsWith: String + text_in: [String!] + status_eq: CommentStatus + status_in: [CommentStatus!] + repliesCount_eq: Int + repliesCount_gt: Int + repliesCount_gte: Int + repliesCount_lt: Int + repliesCount_lte: Int + repliesCount_in: [Int!] + reactionsCount_eq: Int + reactionsCount_gt: Int + reactionsCount_gte: Int + reactionsCount_lt: Int + reactionsCount_lte: Int + reactionsCount_in: [Int!] + reactionsAndRepliesCount_eq: Int + reactionsAndRepliesCount_gt: Int + reactionsAndRepliesCount_gte: Int + reactionsAndRepliesCount_lt: Int + reactionsAndRepliesCount_lte: Int + reactionsAndRepliesCount_in: [Int!] + isEdited_eq: Boolean + isEdited_in: [Boolean!] + author: MembershipWhereInput + video: VideoWhereInput + reactions_none: CommentReactionWhereInput + reactions_some: CommentReactionWhereInput + reactions_every: CommentReactionWhereInput + reactionsCountByReactionId_none: CommentReactionsCountByReactionIdWhereInput + reactionsCountByReactionId_some: CommentReactionsCountByReactionIdWhereInput + reactionsCountByReactionId_every: CommentReactionsCountByReactionIdWhereInput + parentComment: CommentWhereInput + edits_none: CommentTextUpdatedEventWhereInput + edits_some: CommentTextUpdatedEventWhereInput + edits_every: CommentTextUpdatedEventWhereInput + deletedInEvent: CommentDeletedEventWhereInput + moderatedInEvent: CommentModeratedEventWhereInput + commentparentComment_none: CommentWhereInput + commentparentComment_some: CommentWhereInput + commentparentComment_every: CommentWhereInput + commentcreatedeventcomment_none: CommentCreatedEventWhereInput + commentcreatedeventcomment_some: CommentCreatedEventWhereInput + commentcreatedeventcomment_every: CommentCreatedEventWhereInput + commentpinnedeventcomment_none: CommentPinnedEventWhereInput + commentpinnedeventcomment_some: CommentPinnedEventWhereInput + commentpinnedeventcomment_every: CommentPinnedEventWhereInput + commentreactedeventcomment_none: CommentReactedEventWhereInput + commentreactedeventcomment_some: CommentReactedEventWhereInput + commentreactedeventcomment_every: CommentReactedEventWhereInput + AND: [CommentWhereInput!] + OR: [CommentWhereInput!] + NOT: [CommentWhereInput!] } -input MembershipExternalResourceWhereUniqueInput { +input CommentWhereUniqueInput { id: ID! } -input MembershipExternalResourceCreateInput { - type: MembershipExternalResourceType! - value: String! - memberMetadata: ID! - member: ID +input CommentCreateInput { + author: ID! + text: String! + video: ID! + status: CommentStatus! + parentComment: ID + repliesCount: Float! + reactionsCount: Float! + reactionsAndRepliesCount: Float! + isEdited: Boolean! } -input MembershipExternalResourceUpdateInput { - type: MembershipExternalResourceType - value: String - memberMetadata: ID - member: ID +input CommentUpdateInput { + author: ID + text: String + video: ID + status: CommentStatus + parentComment: ID + repliesCount: Float + reactionsCount: Float + reactionsAndRepliesCount: Float + isEdited: Boolean } -input MemberCreatedEventWhereInput { +input CommentCreatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17364,61 +17062,49 @@ input MemberCreatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - rootAccount_eq: String - rootAccount_contains: String - rootAccount_startsWith: String - rootAccount_endsWith: String - rootAccount_in: [String!] - controllerAccount_eq: String - controllerAccount_contains: String - controllerAccount_startsWith: String - controllerAccount_endsWith: String - controllerAccount_in: [String!] - handle_eq: String - handle_contains: String - handle_startsWith: String - handle_endsWith: String - handle_in: [String!] - isFoundingMember_eq: Boolean - isFoundingMember_in: [Boolean!] - newMember: MembershipWhereInput - metadata: MemberMetadataWhereInput - AND: [MemberCreatedEventWhereInput!] - OR: [MemberCreatedEventWhereInput!] - NOT: [MemberCreatedEventWhereInput!] + text_eq: String + text_contains: String + text_startsWith: String + text_endsWith: String + text_in: [String!] + comment: CommentWhereInput + parentCommentAuthor: MembershipWhereInput + video: VideoWhereInput + videoChannel: ChannelWhereInput + AND: [CommentCreatedEventWhereInput!] + OR: [CommentCreatedEventWhereInput!] + NOT: [CommentCreatedEventWhereInput!] } -input MemberCreatedEventWhereUniqueInput { +input CommentCreatedEventWhereUniqueInput { id: ID! } -input MemberCreatedEventCreateInput { +input CommentCreatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - newMember: ID! - rootAccount: String! - controllerAccount: String! - handle: String! - metadata: ID! - isFoundingMember: Boolean! + comment: ID! + parentCommentAuthor: ID + video: ID! + videoChannel: ID! + text: String! } -input MemberCreatedEventUpdateInput { +input CommentCreatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - newMember: ID - rootAccount: String - controllerAccount: String - handle: String - metadata: ID - isFoundingMember: Boolean + comment: ID + parentCommentAuthor: ID + video: ID + videoChannel: ID + text: String } -input MemberInvitedEventWhereInput { +input MemberBannedFromChannelEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17462,68 +17148,40 @@ input MemberInvitedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - rootAccount_eq: String - rootAccount_contains: String - rootAccount_startsWith: String - rootAccount_endsWith: String - rootAccount_in: [String!] - controllerAccount_eq: String - controllerAccount_contains: String - controllerAccount_startsWith: String - controllerAccount_endsWith: String - controllerAccount_in: [String!] - handle_eq: String - handle_contains: String - handle_startsWith: String - handle_endsWith: String - handle_in: [String!] - initialBalance_eq: BigInt - initialBalance_gt: BigInt - initialBalance_gte: BigInt - initialBalance_lt: BigInt - initialBalance_lte: BigInt - initialBalance_in: [BigInt!] - invitingMember: MembershipWhereInput - newMember: MembershipWhereInput - metadata: MemberMetadataWhereInput - AND: [MemberInvitedEventWhereInput!] - OR: [MemberInvitedEventWhereInput!] - NOT: [MemberInvitedEventWhereInput!] + action_eq: Boolean + action_in: [Boolean!] + channel: ChannelWhereInput + member: MembershipWhereInput + AND: [MemberBannedFromChannelEventWhereInput!] + OR: [MemberBannedFromChannelEventWhereInput!] + NOT: [MemberBannedFromChannelEventWhereInput!] } -input MemberInvitedEventWhereUniqueInput { +input MemberBannedFromChannelEventWhereUniqueInput { id: ID! } -input MemberInvitedEventCreateInput { +input MemberBannedFromChannelEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - invitingMember: ID! - newMember: ID! - rootAccount: String! - controllerAccount: String! - handle: String! - metadata: ID! - initialBalance: String! + channel: ID! + member: ID! + action: Boolean! } -input MemberInvitedEventUpdateInput { +input MemberBannedFromChannelEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - invitingMember: ID - newMember: ID - rootAccount: String - controllerAccount: String - handle: String - metadata: ID - initialBalance: String + channel: ID + member: ID + action: Boolean } -input MemberProfileUpdatedEventWhereInput { +input VideoReactedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17567,50 +17225,294 @@ input MemberProfileUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newHandle_eq: String - newHandle_contains: String - newHandle_startsWith: String - newHandle_endsWith: String - newHandle_in: [String!] - newHandleRaw_eq: String - newHandleRaw_contains: String - newHandleRaw_startsWith: String - newHandleRaw_endsWith: String - newHandleRaw_in: [String!] - member: MembershipWhereInput - newMetadata: MemberMetadataWhereInput - AND: [MemberProfileUpdatedEventWhereInput!] - OR: [MemberProfileUpdatedEventWhereInput!] - NOT: [MemberProfileUpdatedEventWhereInput!] + reactionResult_eq: VideoReactionOptions + reactionResult_in: [VideoReactionOptions!] + video: VideoWhereInput + videoChannel: ChannelWhereInput + reactingMember: MembershipWhereInput + AND: [VideoReactedEventWhereInput!] + OR: [VideoReactedEventWhereInput!] + NOT: [VideoReactedEventWhereInput!] +} + +input VideoReactedEventWhereUniqueInput { + id: ID! +} + +input VideoReactedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + video: ID! + videoChannel: ID! + reactionResult: VideoReactionOptions! + reactingMember: ID! +} + +input VideoReactedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + video: ID + videoChannel: ID + reactionResult: VideoReactionOptions + reactingMember: ID +} + +input ChannelWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + title_eq: String + title_contains: String + title_startsWith: String + title_endsWith: String + title_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + activeVideosCounter_eq: Int + activeVideosCounter_gt: Int + activeVideosCounter_gte: Int + activeVideosCounter_lt: Int + activeVideosCounter_lte: Int + activeVideosCounter_in: [Int!] + isPublic_eq: Boolean + isPublic_in: [Boolean!] + isCensored_eq: Boolean + isCensored_in: [Boolean!] + createdInBlock_eq: Int + createdInBlock_gt: Int + createdInBlock_gte: Int + createdInBlock_lt: Int + createdInBlock_lte: Int + createdInBlock_in: [Int!] + rewardAccount_eq: String + rewardAccount_contains: String + rewardAccount_startsWith: String + rewardAccount_endsWith: String + rewardAccount_in: [String!] + channelStateBloatBond_eq: BigInt + channelStateBloatBond_gt: BigInt + channelStateBloatBond_gte: BigInt + channelStateBloatBond_lt: BigInt + channelStateBloatBond_lte: BigInt + channelStateBloatBond_in: [BigInt!] + privilegeLevel_eq: Int + privilegeLevel_gt: Int + privilegeLevel_gte: Int + privilegeLevel_lt: Int + privilegeLevel_lte: Int + privilegeLevel_in: [Int!] + cumulativeRewardClaimed_eq: BigInt + cumulativeRewardClaimed_gt: BigInt + cumulativeRewardClaimed_gte: BigInt + cumulativeRewardClaimed_lt: BigInt + cumulativeRewardClaimed_lte: BigInt + cumulativeRewardClaimed_in: [BigInt!] + totalVideosCreated_eq: Int + totalVideosCreated_gt: Int + totalVideosCreated_gte: Int + totalVideosCreated_lt: Int + totalVideosCreated_lte: Int + totalVideosCreated_in: [Int!] + entryApp: AppWhereInput + ownerMember: MembershipWhereInput + ownerCuratorGroup: CuratorGroupWhereInput + coverPhoto: StorageDataObjectWhereInput + avatarPhoto: StorageDataObjectWhereInput + language: LanguageWhereInput + videos_none: VideoWhereInput + videos_some: VideoWhereInput + videos_every: VideoWhereInput + collaborators_none: CollaboratorWhereInput + collaborators_some: CollaboratorWhereInput + collaborators_every: CollaboratorWhereInput + bannedMembers_none: MembershipWhereInput + bannedMembers_some: MembershipWhereInput + bannedMembers_every: MembershipWhereInput + channelNftCollectors_none: ChannelNftCollectorsWhereInput + channelNftCollectors_some: ChannelNftCollectorsWhereInput + channelNftCollectors_every: ChannelNftCollectorsWhereInput + claimedRewards_none: ChannelRewardClaimedEventWhereInput + claimedRewards_some: ChannelRewardClaimedEventWhereInput + claimedRewards_every: ChannelRewardClaimedEventWhereInput + channelfundswithdrawneventchannel_none: ChannelFundsWithdrawnEventWhereInput + channelfundswithdrawneventchannel_some: ChannelFundsWithdrawnEventWhereInput + channelfundswithdrawneventchannel_every: ChannelFundsWithdrawnEventWhereInput + channelpaymentmadeeventpayeeChannel_none: ChannelPaymentMadeEventWhereInput + channelpaymentmadeeventpayeeChannel_some: ChannelPaymentMadeEventWhereInput + channelpaymentmadeeventpayeeChannel_every: ChannelPaymentMadeEventWhereInput + channelrewardclaimedandwithdrawneventchannel_none: ChannelRewardClaimedAndWithdrawnEventWhereInput + channelrewardclaimedandwithdrawneventchannel_some: ChannelRewardClaimedAndWithdrawnEventWhereInput + channelrewardclaimedandwithdrawneventchannel_every: ChannelRewardClaimedAndWithdrawnEventWhereInput + commentcreatedeventvideoChannel_none: CommentCreatedEventWhereInput + commentcreatedeventvideoChannel_some: CommentCreatedEventWhereInput + commentcreatedeventvideoChannel_every: CommentCreatedEventWhereInput + commentdeletedeventvideoChannel_none: CommentDeletedEventWhereInput + commentdeletedeventvideoChannel_some: CommentDeletedEventWhereInput + commentdeletedeventvideoChannel_every: CommentDeletedEventWhereInput + commentmoderatedeventvideoChannel_none: CommentModeratedEventWhereInput + commentmoderatedeventvideoChannel_some: CommentModeratedEventWhereInput + commentmoderatedeventvideoChannel_every: CommentModeratedEventWhereInput + commentpinnedeventvideoChannel_none: CommentPinnedEventWhereInput + commentpinnedeventvideoChannel_some: CommentPinnedEventWhereInput + commentpinnedeventvideoChannel_every: CommentPinnedEventWhereInput + commentreactedeventvideoChannel_none: CommentReactedEventWhereInput + commentreactedeventvideoChannel_some: CommentReactedEventWhereInput + commentreactedeventvideoChannel_every: CommentReactedEventWhereInput + commenttextupdatedeventvideoChannel_none: CommentTextUpdatedEventWhereInput + commenttextupdatedeventvideoChannel_some: CommentTextUpdatedEventWhereInput + commenttextupdatedeventvideoChannel_every: CommentTextUpdatedEventWhereInput + memberbannedfromchanneleventchannel_none: MemberBannedFromChannelEventWhereInput + memberbannedfromchanneleventchannel_some: MemberBannedFromChannelEventWhereInput + memberbannedfromchanneleventchannel_every: MemberBannedFromChannelEventWhereInput + ownednftcreatorChannel_none: OwnedNftWhereInput + ownednftcreatorChannel_some: OwnedNftWhereInput + ownednftcreatorChannel_every: OwnedNftWhereInput + videoreactedeventvideoChannel_none: VideoReactedEventWhereInput + videoreactedeventvideoChannel_some: VideoReactedEventWhereInput + videoreactedeventvideoChannel_every: VideoReactedEventWhereInput + AND: [ChannelWhereInput!] + OR: [ChannelWhereInput!] + NOT: [ChannelWhereInput!] +} + +input ChannelWhereUniqueInput { + id: ID! +} + +input ChannelCreateInput { + entryApp: ID + ownerMember: ID + ownerCuratorGroup: ID + title: String + description: String + activeVideosCounter: Float! + coverPhoto: ID + avatarPhoto: ID + isPublic: Boolean + isCensored: Boolean! + language: ID + createdInBlock: Float! + rewardAccount: String! + channelStateBloatBond: String! + privilegeLevel: Float + cumulativeRewardClaimed: String + totalVideosCreated: Float! +} + +input ChannelUpdateInput { + entryApp: ID + ownerMember: ID + ownerCuratorGroup: ID + title: String + description: String + activeVideosCounter: Float + coverPhoto: ID + avatarPhoto: ID + isPublic: Boolean + isCensored: Boolean + language: ID + createdInBlock: Float + rewardAccount: String + channelStateBloatBond: String + privilegeLevel: Float + cumulativeRewardClaimed: String + totalVideosCreated: Float +} + +input LicenseWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + code_eq: Int + code_gt: Int + code_gte: Int + code_lt: Int + code_lte: Int + code_in: [Int!] + attribution_eq: String + attribution_contains: String + attribution_startsWith: String + attribution_endsWith: String + attribution_in: [String!] + customText_eq: String + customText_contains: String + customText_startsWith: String + customText_endsWith: String + customText_in: [String!] + videolicense_none: VideoWhereInput + videolicense_some: VideoWhereInput + videolicense_every: VideoWhereInput + AND: [LicenseWhereInput!] + OR: [LicenseWhereInput!] + NOT: [LicenseWhereInput!] } -input MemberProfileUpdatedEventWhereUniqueInput { +input LicenseWhereUniqueInput { id: ID! } -input MemberProfileUpdatedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - member: ID! - newHandle: String - newHandleRaw: String - newMetadata: ID! +input LicenseCreateInput { + code: Float + attribution: String + customText: String } -input MemberProfileUpdatedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - member: ID - newHandle: String - newHandleRaw: String - newMetadata: ID +input LicenseUpdateInput { + code: Float + attribution: String + customText: String } -input MembershipBoughtEventWhereInput { +input VideoMediaEncodingWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17635,79 +17537,46 @@ input MembershipBoughtEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - rootAccount_eq: String - rootAccount_contains: String - rootAccount_startsWith: String - rootAccount_endsWith: String - rootAccount_in: [String!] - controllerAccount_eq: String - controllerAccount_contains: String - controllerAccount_startsWith: String - controllerAccount_endsWith: String - controllerAccount_in: [String!] - handle_eq: String - handle_contains: String - handle_startsWith: String - handle_endsWith: String - handle_in: [String!] - newMember: MembershipWhereInput - metadata: MemberMetadataWhereInput - referrer: MembershipWhereInput - AND: [MembershipBoughtEventWhereInput!] - OR: [MembershipBoughtEventWhereInput!] - NOT: [MembershipBoughtEventWhereInput!] + codecName_eq: String + codecName_contains: String + codecName_startsWith: String + codecName_endsWith: String + codecName_in: [String!] + container_eq: String + container_contains: String + container_startsWith: String + container_endsWith: String + container_in: [String!] + mimeMediaType_eq: String + mimeMediaType_contains: String + mimeMediaType_startsWith: String + mimeMediaType_endsWith: String + mimeMediaType_in: [String!] + videomediametadataencoding_none: VideoMediaMetadataWhereInput + videomediametadataencoding_some: VideoMediaMetadataWhereInput + videomediametadataencoding_every: VideoMediaMetadataWhereInput + AND: [VideoMediaEncodingWhereInput!] + OR: [VideoMediaEncodingWhereInput!] + NOT: [VideoMediaEncodingWhereInput!] } -input MembershipBoughtEventWhereUniqueInput { +input VideoMediaEncodingWhereUniqueInput { id: ID! } -input MembershipBoughtEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - newMember: ID! - rootAccount: String! - controllerAccount: String! - handle: String! - metadata: ID! - referrer: ID +input VideoMediaEncodingCreateInput { + codecName: String + container: String + mimeMediaType: String } -input MembershipBoughtEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - newMember: ID - rootAccount: String - controllerAccount: String - handle: String - metadata: ID - referrer: ID +input VideoMediaEncodingUpdateInput { + codecName: String + container: String + mimeMediaType: String } -input MemberMetadataWhereInput { +input VideoMediaMetadataWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17732,62 +17601,58 @@ input MemberMetadataWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - name_eq: String - name_contains: String - name_startsWith: String - name_endsWith: String - name_in: [String!] - avatar_json: JSONObject - about_eq: String - about_contains: String - about_startsWith: String - about_endsWith: String - about_in: [String!] - isVerifiedValidator_eq: Boolean - isVerifiedValidator_in: [Boolean!] - member: MembershipWhereInput - externalResources_none: MembershipExternalResourceWhereInput - externalResources_some: MembershipExternalResourceWhereInput - externalResources_every: MembershipExternalResourceWhereInput - membercreatedeventmetadata_none: MemberCreatedEventWhereInput - membercreatedeventmetadata_some: MemberCreatedEventWhereInput - membercreatedeventmetadata_every: MemberCreatedEventWhereInput - memberinvitedeventmetadata_none: MemberInvitedEventWhereInput - memberinvitedeventmetadata_some: MemberInvitedEventWhereInput - memberinvitedeventmetadata_every: MemberInvitedEventWhereInput - memberprofileupdatedeventnewMetadata_none: MemberProfileUpdatedEventWhereInput - memberprofileupdatedeventnewMetadata_some: MemberProfileUpdatedEventWhereInput - memberprofileupdatedeventnewMetadata_every: MemberProfileUpdatedEventWhereInput - membershipboughteventmetadata_none: MembershipBoughtEventWhereInput - membershipboughteventmetadata_some: MembershipBoughtEventWhereInput - membershipboughteventmetadata_every: MembershipBoughtEventWhereInput - membershipgiftedeventmetadata_none: MembershipGiftedEventWhereInput - membershipgiftedeventmetadata_some: MembershipGiftedEventWhereInput - membershipgiftedeventmetadata_every: MembershipGiftedEventWhereInput - AND: [MemberMetadataWhereInput!] - OR: [MemberMetadataWhereInput!] - NOT: [MemberMetadataWhereInput!] + pixelWidth_eq: Int + pixelWidth_gt: Int + pixelWidth_gte: Int + pixelWidth_lt: Int + pixelWidth_lte: Int + pixelWidth_in: [Int!] + pixelHeight_eq: Int + pixelHeight_gt: Int + pixelHeight_gte: Int + pixelHeight_lt: Int + pixelHeight_lte: Int + pixelHeight_in: [Int!] + size_eq: BigInt + size_gt: BigInt + size_gte: BigInt + size_lt: BigInt + size_lte: BigInt + size_in: [BigInt!] + createdInBlock_eq: Int + createdInBlock_gt: Int + createdInBlock_gte: Int + createdInBlock_lt: Int + createdInBlock_lte: Int + createdInBlock_in: [Int!] + encoding: VideoMediaEncodingWhereInput + video: VideoWhereInput + AND: [VideoMediaMetadataWhereInput!] + OR: [VideoMediaMetadataWhereInput!] + NOT: [VideoMediaMetadataWhereInput!] } -input MemberMetadataWhereUniqueInput { +input VideoMediaMetadataWhereUniqueInput { id: ID! } -input MemberMetadataCreateInput { - name: String - avatar: JSONObject! - about: String - isVerifiedValidator: Boolean +input VideoMediaMetadataCreateInput { + encoding: ID + pixelWidth: Float + pixelHeight: Float + size: String + createdInBlock: Float! } -input MemberMetadataUpdateInput { - name: String - avatar: JSONObject - about: String - isVerifiedValidator: Boolean +input VideoMediaMetadataUpdateInput { + encoding: ID + pixelWidth: Float + pixelHeight: Float + size: String + createdInBlock: Float } -input MembershipGiftedEventWhereInput { +input VideoReactionWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17812,76 +17677,39 @@ input MembershipGiftedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - rootAccount_eq: String - rootAccount_contains: String - rootAccount_startsWith: String - rootAccount_endsWith: String - rootAccount_in: [String!] - controllerAccount_eq: String - controllerAccount_contains: String - controllerAccount_startsWith: String - controllerAccount_endsWith: String - controllerAccount_in: [String!] - handle_eq: String - handle_contains: String - handle_startsWith: String - handle_endsWith: String - handle_in: [String!] - newMember: MembershipWhereInput - metadata: MemberMetadataWhereInput - AND: [MembershipGiftedEventWhereInput!] - OR: [MembershipGiftedEventWhereInput!] - NOT: [MembershipGiftedEventWhereInput!] + reaction_eq: VideoReactionOptions + reaction_in: [VideoReactionOptions!] + memberId_eq: String + memberId_contains: String + memberId_startsWith: String + memberId_endsWith: String + memberId_in: [String!] + member: MembershipWhereInput + video: VideoWhereInput + AND: [VideoReactionWhereInput!] + OR: [VideoReactionWhereInput!] + NOT: [VideoReactionWhereInput!] } -input MembershipGiftedEventWhereUniqueInput { +input VideoReactionWhereUniqueInput { id: ID! } -input MembershipGiftedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - newMember: ID! - rootAccount: String! - controllerAccount: String! - handle: String! - metadata: ID! +input VideoReactionCreateInput { + reaction: VideoReactionOptions! + member: ID! + memberId: String! + video: ID! } -input MembershipGiftedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - newMember: ID - rootAccount: String - controllerAccount: String - handle: String - metadata: ID +input VideoReactionUpdateInput { + reaction: VideoReactionOptions + member: ID + memberId: String + video: ID } -input ProposalCreatedEventWhereInput { +input VideoReactionsCountByReactionTypeWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17906,52 +17734,37 @@ input ProposalCreatedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - proposal: ProposalWhereInput - AND: [ProposalCreatedEventWhereInput!] - OR: [ProposalCreatedEventWhereInput!] - NOT: [ProposalCreatedEventWhereInput!] + reaction_eq: VideoReactionOptions + reaction_in: [VideoReactionOptions!] + count_eq: Int + count_gt: Int + count_gte: Int + count_lt: Int + count_lte: Int + count_in: [Int!] + video: VideoWhereInput + AND: [VideoReactionsCountByReactionTypeWhereInput!] + OR: [VideoReactionsCountByReactionTypeWhereInput!] + NOT: [VideoReactionsCountByReactionTypeWhereInput!] } -input ProposalCreatedEventWhereUniqueInput { +input VideoReactionsCountByReactionTypeWhereUniqueInput { id: ID! } -input ProposalCreatedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - proposal: ID! +input VideoReactionsCountByReactionTypeCreateInput { + reaction: VideoReactionOptions! + count: Float! + video: ID! } -input ProposalCreatedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - proposal: ID +input VideoReactionsCountByReactionTypeUpdateInput { + reaction: VideoReactionOptions + count: Float + video: ID } -input ProposalStatusUpdatedEventWhereInput { +input VideoReactionsPreferenceEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -17995,36 +17808,37 @@ input ProposalStatusUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newStatus_json: JSONObject - proposal: ProposalWhereInput - AND: [ProposalStatusUpdatedEventWhereInput!] - OR: [ProposalStatusUpdatedEventWhereInput!] - NOT: [ProposalStatusUpdatedEventWhereInput!] + reactionsStatus_eq: Boolean + reactionsStatus_in: [Boolean!] + video: VideoWhereInput + AND: [VideoReactionsPreferenceEventWhereInput!] + OR: [VideoReactionsPreferenceEventWhereInput!] + NOT: [VideoReactionsPreferenceEventWhereInput!] } -input ProposalStatusUpdatedEventWhereUniqueInput { +input VideoReactionsPreferenceEventWhereUniqueInput { id: ID! } -input ProposalStatusUpdatedEventCreateInput { +input VideoReactionsPreferenceEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - proposal: ID! - newStatus: JSONObject! + video: ID! + reactionsStatus: Boolean! } -input ProposalStatusUpdatedEventUpdateInput { +input VideoReactionsPreferenceEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - proposal: ID - newStatus: JSONObject + video: ID + reactionsStatus: Boolean } -input ProposalVotedEventWhereInput { +input VideoWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18049,74 +17863,235 @@ input ProposalVotedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - voteKind_eq: ProposalVoteKind - voteKind_in: [ProposalVoteKind!] - rationale_eq: String - rationale_contains: String - rationale_startsWith: String - rationale_endsWith: String - rationale_in: [String!] - votingRound_eq: Int - votingRound_gt: Int - votingRound_gte: Int - votingRound_lt: Int - votingRound_lte: Int - votingRound_in: [Int!] - voter: MembershipWhereInput - proposal: ProposalWhereInput - AND: [ProposalVotedEventWhereInput!] - OR: [ProposalVotedEventWhereInput!] - NOT: [ProposalVotedEventWhereInput!] + title_eq: String + title_contains: String + title_startsWith: String + title_endsWith: String + title_in: [String!] + description_eq: String + description_contains: String + description_startsWith: String + description_endsWith: String + description_in: [String!] + duration_eq: Int + duration_gt: Int + duration_gte: Int + duration_lt: Int + duration_lte: Int + duration_in: [Int!] + hasMarketing_eq: Boolean + hasMarketing_in: [Boolean!] + publishedBeforeJoystream_eq: DateTime + publishedBeforeJoystream_lt: DateTime + publishedBeforeJoystream_lte: DateTime + publishedBeforeJoystream_gt: DateTime + publishedBeforeJoystream_gte: DateTime + isPublic_eq: Boolean + isPublic_in: [Boolean!] + isCensored_eq: Boolean + isCensored_in: [Boolean!] + isExplicit_eq: Boolean + isExplicit_in: [Boolean!] + videoStateBloatBond_eq: BigInt + videoStateBloatBond_gt: BigInt + videoStateBloatBond_gte: BigInt + videoStateBloatBond_lt: BigInt + videoStateBloatBond_lte: BigInt + videoStateBloatBond_in: [BigInt!] + createdInBlock_eq: Int + createdInBlock_gt: Int + createdInBlock_gte: Int + createdInBlock_lt: Int + createdInBlock_lte: Int + createdInBlock_in: [Int!] + isCommentSectionEnabled_eq: Boolean + isCommentSectionEnabled_in: [Boolean!] + commentsCount_eq: Int + commentsCount_gt: Int + commentsCount_gte: Int + commentsCount_lt: Int + commentsCount_lte: Int + commentsCount_in: [Int!] + isReactionFeatureEnabled_eq: Boolean + isReactionFeatureEnabled_in: [Boolean!] + reactionsCount_eq: Int + reactionsCount_gt: Int + reactionsCount_gte: Int + reactionsCount_lt: Int + reactionsCount_lte: Int + reactionsCount_in: [Int!] + ytVideoId_eq: String + ytVideoId_contains: String + ytVideoId_startsWith: String + ytVideoId_endsWith: String + ytVideoId_in: [String!] + entryApp: AppWhereInput + channel: ChannelWhereInput + category: VideoCategoryWhereInput + thumbnailPhoto: StorageDataObjectWhereInput + language: LanguageWhereInput + nft: OwnedNftWhereInput + license: LicenseWhereInput + media: StorageDataObjectWhereInput + mediaMetadata: VideoMediaMetadataWhereInput + subtitles_none: VideoSubtitleWhereInput + subtitles_some: VideoSubtitleWhereInput + subtitles_every: VideoSubtitleWhereInput + pinnedComment: CommentWhereInput + comments_none: CommentWhereInput + comments_some: CommentWhereInput + comments_every: CommentWhereInput + reactions_none: VideoReactionWhereInput + reactions_some: VideoReactionWhereInput + reactions_every: VideoReactionWhereInput + reactionsCountByReactionId_none: VideoReactionsCountByReactionTypeWhereInput + reactionsCountByReactionId_some: VideoReactionsCountByReactionTypeWhereInput + reactionsCountByReactionId_every: VideoReactionsCountByReactionTypeWhereInput + auctionbidcanceledeventvideo_none: AuctionBidCanceledEventWhereInput + auctionbidcanceledeventvideo_some: AuctionBidCanceledEventWhereInput + auctionbidcanceledeventvideo_every: AuctionBidCanceledEventWhereInput + auctionbidmadeeventvideo_none: AuctionBidMadeEventWhereInput + auctionbidmadeeventvideo_some: AuctionBidMadeEventWhereInput + auctionbidmadeeventvideo_every: AuctionBidMadeEventWhereInput + auctioncanceledeventvideo_none: AuctionCanceledEventWhereInput + auctioncanceledeventvideo_some: AuctionCanceledEventWhereInput + auctioncanceledeventvideo_every: AuctionCanceledEventWhereInput + bidmadecompletingauctioneventvideo_none: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventvideo_some: BidMadeCompletingAuctionEventWhereInput + bidmadecompletingauctioneventvideo_every: BidMadeCompletingAuctionEventWhereInput + buynowcanceledeventvideo_none: BuyNowCanceledEventWhereInput + buynowcanceledeventvideo_some: BuyNowCanceledEventWhereInput + buynowcanceledeventvideo_every: BuyNowCanceledEventWhereInput + buynowpriceupdatedeventvideo_none: BuyNowPriceUpdatedEventWhereInput + buynowpriceupdatedeventvideo_some: BuyNowPriceUpdatedEventWhereInput + buynowpriceupdatedeventvideo_every: BuyNowPriceUpdatedEventWhereInput + commentcreatedeventvideo_none: CommentCreatedEventWhereInput + commentcreatedeventvideo_some: CommentCreatedEventWhereInput + commentcreatedeventvideo_every: CommentCreatedEventWhereInput + commentdeletedeventvideo_none: CommentDeletedEventWhereInput + commentdeletedeventvideo_some: CommentDeletedEventWhereInput + commentdeletedeventvideo_every: CommentDeletedEventWhereInput + commentmoderatedeventvideo_none: CommentModeratedEventWhereInput + commentmoderatedeventvideo_some: CommentModeratedEventWhereInput + commentmoderatedeventvideo_every: CommentModeratedEventWhereInput + commentpinnedeventvideo_none: CommentPinnedEventWhereInput + commentpinnedeventvideo_some: CommentPinnedEventWhereInput + commentpinnedeventvideo_every: CommentPinnedEventWhereInput + commentreactedeventvideo_none: CommentReactedEventWhereInput + commentreactedeventvideo_some: CommentReactedEventWhereInput + commentreactedeventvideo_every: CommentReactedEventWhereInput + commentreactionvideo_none: CommentReactionWhereInput + commentreactionvideo_some: CommentReactionWhereInput + commentreactionvideo_every: CommentReactionWhereInput + commentreactionscountbyreactionidvideo_none: CommentReactionsCountByReactionIdWhereInput + commentreactionscountbyreactionidvideo_some: CommentReactionsCountByReactionIdWhereInput + commentreactionscountbyreactionidvideo_every: CommentReactionsCountByReactionIdWhereInput + commenttextupdatedeventvideo_none: CommentTextUpdatedEventWhereInput + commenttextupdatedeventvideo_some: CommentTextUpdatedEventWhereInput + commenttextupdatedeventvideo_every: CommentTextUpdatedEventWhereInput + englishauctionsettledeventvideo_none: EnglishAuctionSettledEventWhereInput + englishauctionsettledeventvideo_some: EnglishAuctionSettledEventWhereInput + englishauctionsettledeventvideo_every: EnglishAuctionSettledEventWhereInput + englishauctionstartedeventvideo_none: EnglishAuctionStartedEventWhereInput + englishauctionstartedeventvideo_some: EnglishAuctionStartedEventWhereInput + englishauctionstartedeventvideo_every: EnglishAuctionStartedEventWhereInput + nftboughteventvideo_none: NftBoughtEventWhereInput + nftboughteventvideo_some: NftBoughtEventWhereInput + nftboughteventvideo_every: NftBoughtEventWhereInput + nftissuedeventvideo_none: NftIssuedEventWhereInput + nftissuedeventvideo_some: NftIssuedEventWhereInput + nftissuedeventvideo_every: NftIssuedEventWhereInput + nftsellordermadeeventvideo_none: NftSellOrderMadeEventWhereInput + nftsellordermadeeventvideo_some: NftSellOrderMadeEventWhereInput + nftsellordermadeeventvideo_every: NftSellOrderMadeEventWhereInput + nftslingedbacktotheoriginalartisteventvideo_none: NftSlingedBackToTheOriginalArtistEventWhereInput + nftslingedbacktotheoriginalartisteventvideo_some: NftSlingedBackToTheOriginalArtistEventWhereInput + nftslingedbacktotheoriginalartisteventvideo_every: NftSlingedBackToTheOriginalArtistEventWhereInput + offeracceptedeventvideo_none: OfferAcceptedEventWhereInput + offeracceptedeventvideo_some: OfferAcceptedEventWhereInput + offeracceptedeventvideo_every: OfferAcceptedEventWhereInput + offercanceledeventvideo_none: OfferCanceledEventWhereInput + offercanceledeventvideo_some: OfferCanceledEventWhereInput + offercanceledeventvideo_every: OfferCanceledEventWhereInput + offerstartedeventvideo_none: OfferStartedEventWhereInput + offerstartedeventvideo_some: OfferStartedEventWhereInput + offerstartedeventvideo_every: OfferStartedEventWhereInput + openauctionbidacceptedeventvideo_none: OpenAuctionBidAcceptedEventWhereInput + openauctionbidacceptedeventvideo_some: OpenAuctionBidAcceptedEventWhereInput + openauctionbidacceptedeventvideo_every: OpenAuctionBidAcceptedEventWhereInput + openauctionstartedeventvideo_none: OpenAuctionStartedEventWhereInput + openauctionstartedeventvideo_some: OpenAuctionStartedEventWhereInput + openauctionstartedeventvideo_every: OpenAuctionStartedEventWhereInput + videoreactedeventvideo_none: VideoReactedEventWhereInput + videoreactedeventvideo_some: VideoReactedEventWhereInput + videoreactedeventvideo_every: VideoReactedEventWhereInput + videoreactionspreferenceeventvideo_none: VideoReactionsPreferenceEventWhereInput + videoreactionspreferenceeventvideo_some: VideoReactionsPreferenceEventWhereInput + videoreactionspreferenceeventvideo_every: VideoReactionsPreferenceEventWhereInput + AND: [VideoWhereInput!] + OR: [VideoWhereInput!] + NOT: [VideoWhereInput!] } -input ProposalVotedEventWhereUniqueInput { +input VideoWhereUniqueInput { id: ID! } -input ProposalVotedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - voter: ID! - voteKind: ProposalVoteKind! - proposal: ID! - rationale: String! - votingRound: Float! +input VideoCreateInput { + entryApp: ID + channel: ID! + category: ID + title: String + description: String + duration: Float + thumbnailPhoto: ID + language: ID + hasMarketing: Boolean + publishedBeforeJoystream: DateTime + isPublic: Boolean + isCensored: Boolean! + nft: ID + isExplicit: Boolean + license: ID + media: ID + videoStateBloatBond: String! + mediaMetadata: ID + createdInBlock: Float! + isCommentSectionEnabled: Boolean! + commentsCount: Float! + isReactionFeatureEnabled: Boolean! + reactionsCount: Float! + ytVideoId: String } -input ProposalVotedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - voter: ID - voteKind: ProposalVoteKind - proposal: ID - rationale: String - votingRound: Float +input VideoUpdateInput { + entryApp: ID + channel: ID + category: ID + title: String + description: String + duration: Float + thumbnailPhoto: ID + language: ID + hasMarketing: Boolean + publishedBeforeJoystream: DateTime + isPublic: Boolean + isCensored: Boolean + nft: ID + isExplicit: Boolean + license: ID + media: ID + videoStateBloatBond: String + mediaMetadata: ID + createdInBlock: Float + isCommentSectionEnabled: Boolean + commentsCount: Float + isReactionFeatureEnabled: Boolean + reactionsCount: Float + ytVideoId: String } -input ProposalCancelledEventWhereInput { +input ChannelPayoutsUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18160,33 +18135,75 @@ input ProposalCancelledEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - proposal: ProposalWhereInput - AND: [ProposalCancelledEventWhereInput!] - OR: [ProposalCancelledEventWhereInput!] - NOT: [ProposalCancelledEventWhereInput!] + commitment_eq: String + commitment_contains: String + commitment_startsWith: String + commitment_endsWith: String + commitment_in: [String!] + payloadSize_eq: BigInt + payloadSize_gt: BigInt + payloadSize_gte: BigInt + payloadSize_lt: BigInt + payloadSize_lte: BigInt + payloadSize_in: [BigInt!] + payloadHash_eq: String + payloadHash_contains: String + payloadHash_startsWith: String + payloadHash_endsWith: String + payloadHash_in: [String!] + minCashoutAllowed_eq: BigInt + minCashoutAllowed_gt: BigInt + minCashoutAllowed_gte: BigInt + minCashoutAllowed_lt: BigInt + minCashoutAllowed_lte: BigInt + minCashoutAllowed_in: [BigInt!] + maxCashoutAllowed_eq: BigInt + maxCashoutAllowed_gt: BigInt + maxCashoutAllowed_gte: BigInt + maxCashoutAllowed_lt: BigInt + maxCashoutAllowed_lte: BigInt + maxCashoutAllowed_in: [BigInt!] + channelCashoutsEnabled_eq: Boolean + channelCashoutsEnabled_in: [Boolean!] + payloadDataObject: StorageDataObjectWhereInput + AND: [ChannelPayoutsUpdatedEventWhereInput!] + OR: [ChannelPayoutsUpdatedEventWhereInput!] + NOT: [ChannelPayoutsUpdatedEventWhereInput!] } -input ProposalCancelledEventWhereUniqueInput { +input ChannelPayoutsUpdatedEventWhereUniqueInput { id: ID! } -input ProposalCancelledEventCreateInput { +input ChannelPayoutsUpdatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - proposal: ID! + commitment: String + payloadDataObject: ID + payloadSize: String + payloadHash: String + minCashoutAllowed: String + maxCashoutAllowed: String + channelCashoutsEnabled: Boolean } -input ProposalCancelledEventUpdateInput { +input ChannelPayoutsUpdatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - proposal: ID + commitment: String + payloadDataObject: ID + payloadSize: String + payloadHash: String + minCashoutAllowed: String + maxCashoutAllowed: String + channelCashoutsEnabled: Boolean } -input ProposalDecisionMadeEventWhereInput { +input StorageDataObjectWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18211,55 +18228,74 @@ input ProposalDecisionMadeEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - decisionStatus_json: JSONObject - proposal: ProposalWhereInput - AND: [ProposalDecisionMadeEventWhereInput!] - OR: [ProposalDecisionMadeEventWhereInput!] - NOT: [ProposalDecisionMadeEventWhereInput!] + isAccepted_eq: Boolean + isAccepted_in: [Boolean!] + size_eq: BigInt + size_gt: BigInt + size_gte: BigInt + size_lt: BigInt + size_lte: BigInt + size_in: [BigInt!] + ipfsHash_eq: String + ipfsHash_contains: String + ipfsHash_startsWith: String + ipfsHash_endsWith: String + ipfsHash_in: [String!] + type_json: JSONObject + stateBloatBond_eq: BigInt + stateBloatBond_gt: BigInt + stateBloatBond_gte: BigInt + stateBloatBond_lt: BigInt + stateBloatBond_lte: BigInt + stateBloatBond_in: [BigInt!] + unsetAt_eq: DateTime + unsetAt_lt: DateTime + unsetAt_lte: DateTime + unsetAt_gt: DateTime + unsetAt_gte: DateTime + storageBag: StorageBagWhereInput + videoThumbnail: VideoWhereInput + videoMedia: VideoWhereInput + videoSubtitle: VideoSubtitleWhereInput + channelcoverPhoto_none: ChannelWhereInput + channelcoverPhoto_some: ChannelWhereInput + channelcoverPhoto_every: ChannelWhereInput + channelavatarPhoto_none: ChannelWhereInput + channelavatarPhoto_some: ChannelWhereInput + channelavatarPhoto_every: ChannelWhereInput + channelpayoutsupdatedeventpayloadDataObject_none: ChannelPayoutsUpdatedEventWhereInput + channelpayoutsupdatedeventpayloadDataObject_some: ChannelPayoutsUpdatedEventWhereInput + channelpayoutsupdatedeventpayloadDataObject_every: ChannelPayoutsUpdatedEventWhereInput + AND: [StorageDataObjectWhereInput!] + OR: [StorageDataObjectWhereInput!] + NOT: [StorageDataObjectWhereInput!] } -input ProposalDecisionMadeEventWhereUniqueInput { +input StorageDataObjectWhereUniqueInput { id: ID! } -input ProposalDecisionMadeEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - proposal: ID! - decisionStatus: JSONObject! +input StorageDataObjectCreateInput { + isAccepted: Boolean! + size: String! + storageBag: ID! + ipfsHash: String! + type: JSONObject! + stateBloatBond: String! + unsetAt: DateTime } -input ProposalDecisionMadeEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - proposal: ID - decisionStatus: JSONObject +input StorageDataObjectUpdateInput { + isAccepted: Boolean + size: String + storageBag: ID + ipfsHash: String + type: JSONObject + stateBloatBond: String + unsetAt: DateTime } -input ProposalExecutedEventWhereInput { +input FundingRequestDestinationWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18284,55 +18320,40 @@ input ProposalExecutedEventWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - inExtrinsic_eq: String - inExtrinsic_contains: String - inExtrinsic_startsWith: String - inExtrinsic_endsWith: String - inExtrinsic_in: [String!] - inBlock_eq: Int - inBlock_gt: Int - inBlock_gte: Int - inBlock_lt: Int - inBlock_lte: Int - inBlock_in: [Int!] - network_eq: Network - network_in: [Network!] - indexInBlock_eq: Int - indexInBlock_gt: Int - indexInBlock_gte: Int - indexInBlock_lt: Int - indexInBlock_lte: Int - indexInBlock_in: [Int!] - executionStatus_json: JSONObject - proposal: ProposalWhereInput - AND: [ProposalExecutedEventWhereInput!] - OR: [ProposalExecutedEventWhereInput!] - NOT: [ProposalExecutedEventWhereInput!] + amount_eq: BigInt + amount_gt: BigInt + amount_gte: BigInt + amount_lt: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + account_eq: String + account_contains: String + account_startsWith: String + account_endsWith: String + account_in: [String!] + list: FundingRequestDestinationsListWhereInput + AND: [FundingRequestDestinationWhereInput!] + OR: [FundingRequestDestinationWhereInput!] + NOT: [FundingRequestDestinationWhereInput!] } -input ProposalExecutedEventWhereUniqueInput { +input FundingRequestDestinationWhereUniqueInput { id: ID! } -input ProposalExecutedEventCreateInput { - inExtrinsic: String - inBlock: Float! - network: Network! - indexInBlock: Float! - proposal: ID! - executionStatus: JSONObject! +input FundingRequestDestinationCreateInput { + amount: String! + account: String! + list: ID! } -input ProposalExecutedEventUpdateInput { - inExtrinsic: String - inBlock: Float - network: Network - indexInBlock: Float - proposal: ID - executionStatus: JSONObject +input FundingRequestDestinationUpdateInput { + amount: String + account: String + list: ID } -input ProposalWhereInput { +input FundingRequestDestinationsListWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18357,104 +18378,90 @@ input ProposalWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - title_eq: String - title_contains: String - title_startsWith: String - title_endsWith: String - title_in: [String!] - description_eq: String - description_contains: String - description_startsWith: String - description_endsWith: String - description_in: [String!] - details_json: JSONObject - stakingAccount_eq: String - stakingAccount_contains: String - stakingAccount_startsWith: String - stakingAccount_endsWith: String - stakingAccount_in: [String!] - exactExecutionBlock_eq: Int - exactExecutionBlock_gt: Int - exactExecutionBlock_gte: Int - exactExecutionBlock_lt: Int - exactExecutionBlock_lte: Int - exactExecutionBlock_in: [Int!] - councilApprovals_eq: Int - councilApprovals_gt: Int - councilApprovals_gte: Int - councilApprovals_lt: Int - councilApprovals_lte: Int - councilApprovals_in: [Int!] - status_json: JSONObject - isFinalized_eq: Boolean - isFinalized_in: [Boolean!] - statusSetAtBlock_eq: Int - statusSetAtBlock_gt: Int - statusSetAtBlock_gte: Int - statusSetAtBlock_lt: Int - statusSetAtBlock_lte: Int - statusSetAtBlock_in: [Int!] - statusSetAtTime_eq: DateTime - statusSetAtTime_lt: DateTime - statusSetAtTime_lte: DateTime - statusSetAtTime_gt: DateTime - statusSetAtTime_gte: DateTime - creator: MembershipWhereInput - createdInEvent: ProposalCreatedEventWhereInput - discussionThread: ProposalDiscussionThreadWhereInput - proposalStatusUpdates_none: ProposalStatusUpdatedEventWhereInput - proposalStatusUpdates_some: ProposalStatusUpdatedEventWhereInput - proposalStatusUpdates_every: ProposalStatusUpdatedEventWhereInput - votes_none: ProposalVotedEventWhereInput - votes_some: ProposalVotedEventWhereInput - votes_every: ProposalVotedEventWhereInput - proposalcancelledeventproposal_none: ProposalCancelledEventWhereInput - proposalcancelledeventproposal_some: ProposalCancelledEventWhereInput - proposalcancelledeventproposal_every: ProposalCancelledEventWhereInput - proposaldecisionmadeeventproposal_none: ProposalDecisionMadeEventWhereInput - proposaldecisionmadeeventproposal_some: ProposalDecisionMadeEventWhereInput - proposaldecisionmadeeventproposal_every: ProposalDecisionMadeEventWhereInput - proposalexecutedeventproposal_none: ProposalExecutedEventWhereInput - proposalexecutedeventproposal_some: ProposalExecutedEventWhereInput - proposalexecutedeventproposal_every: ProposalExecutedEventWhereInput - AND: [ProposalWhereInput!] - OR: [ProposalWhereInput!] - NOT: [ProposalWhereInput!] + phantom_eq: Int + phantom_gt: Int + phantom_gte: Int + phantom_lt: Int + phantom_lte: Int + phantom_in: [Int!] + destinations_none: FundingRequestDestinationWhereInput + destinations_some: FundingRequestDestinationWhereInput + destinations_every: FundingRequestDestinationWhereInput + AND: [FundingRequestDestinationsListWhereInput!] + OR: [FundingRequestDestinationsListWhereInput!] + NOT: [FundingRequestDestinationsListWhereInput!] +} + +input FundingRequestDestinationsListWhereUniqueInput { + id: ID! +} + +input FundingRequestDestinationsListCreateInput { + phantom: Float +} + +input FundingRequestDestinationsListUpdateInput { + phantom: Float +} + +input MembershipExternalResourceWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + type_eq: MembershipExternalResourceType + type_in: [MembershipExternalResourceType!] + value_eq: String + value_contains: String + value_startsWith: String + value_endsWith: String + value_in: [String!] + memberMetadata: MemberMetadataWhereInput + member: MembershipWhereInput + AND: [MembershipExternalResourceWhereInput!] + OR: [MembershipExternalResourceWhereInput!] + NOT: [MembershipExternalResourceWhereInput!] } -input ProposalWhereUniqueInput { +input MembershipExternalResourceWhereUniqueInput { id: ID! } -input ProposalCreateInput { - title: String! - description: String! - details: JSONObject! - stakingAccount: String - creator: ID! - exactExecutionBlock: Float - councilApprovals: Float! - status: JSONObject! - isFinalized: Boolean - statusSetAtBlock: Float! - statusSetAtTime: DateTime! +input MembershipExternalResourceCreateInput { + type: MembershipExternalResourceType! + value: String! + memberMetadata: ID! + member: ID } -input ProposalUpdateInput { - title: String - description: String - details: JSONObject - stakingAccount: String - creator: ID - exactExecutionBlock: Float - councilApprovals: Float - status: JSONObject - isFinalized: Boolean - statusSetAtBlock: Float - statusSetAtTime: DateTime +input MembershipExternalResourceUpdateInput { + type: MembershipExternalResourceType + value: String + memberMetadata: ID + member: ID } -input ProposalDiscussionThreadModeChangedEventWhereInput { +input MemberCreatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18498,39 +18505,61 @@ input ProposalDiscussionThreadModeChangedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - newMode_json: JSONObject - thread: ProposalDiscussionThreadWhereInput - actor: MembershipWhereInput - AND: [ProposalDiscussionThreadModeChangedEventWhereInput!] - OR: [ProposalDiscussionThreadModeChangedEventWhereInput!] - NOT: [ProposalDiscussionThreadModeChangedEventWhereInput!] + rootAccount_eq: String + rootAccount_contains: String + rootAccount_startsWith: String + rootAccount_endsWith: String + rootAccount_in: [String!] + controllerAccount_eq: String + controllerAccount_contains: String + controllerAccount_startsWith: String + controllerAccount_endsWith: String + controllerAccount_in: [String!] + handle_eq: String + handle_contains: String + handle_startsWith: String + handle_endsWith: String + handle_in: [String!] + isFoundingMember_eq: Boolean + isFoundingMember_in: [Boolean!] + newMember: MembershipWhereInput + metadata: MemberMetadataWhereInput + AND: [MemberCreatedEventWhereInput!] + OR: [MemberCreatedEventWhereInput!] + NOT: [MemberCreatedEventWhereInput!] } -input ProposalDiscussionThreadModeChangedEventWhereUniqueInput { +input MemberCreatedEventWhereUniqueInput { id: ID! } -input ProposalDiscussionThreadModeChangedEventCreateInput { +input MemberCreatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - thread: ID! - newMode: JSONObject! - actor: ID! + newMember: ID! + rootAccount: String! + controllerAccount: String! + handle: String! + metadata: ID! + isFoundingMember: Boolean! } -input ProposalDiscussionThreadModeChangedEventUpdateInput { +input MemberCreatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - thread: ID - newMode: JSONObject - actor: ID + newMember: ID + rootAccount: String + controllerAccount: String + handle: String + metadata: ID + isFoundingMember: Boolean } -input ProposalDiscussionThreadWhereInput { +input MemberInvitedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18555,34 +18584,87 @@ input ProposalDiscussionThreadWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - mode_json: JSONObject - proposal: ProposalWhereInput - posts_none: ProposalDiscussionPostWhereInput - posts_some: ProposalDiscussionPostWhereInput - posts_every: ProposalDiscussionPostWhereInput - modeChanges_none: ProposalDiscussionThreadModeChangedEventWhereInput - modeChanges_some: ProposalDiscussionThreadModeChangedEventWhereInput - modeChanges_every: ProposalDiscussionThreadModeChangedEventWhereInput - AND: [ProposalDiscussionThreadWhereInput!] - OR: [ProposalDiscussionThreadWhereInput!] - NOT: [ProposalDiscussionThreadWhereInput!] + inExtrinsic_eq: String + inExtrinsic_contains: String + inExtrinsic_startsWith: String + inExtrinsic_endsWith: String + inExtrinsic_in: [String!] + inBlock_eq: Int + inBlock_gt: Int + inBlock_gte: Int + inBlock_lt: Int + inBlock_lte: Int + inBlock_in: [Int!] + network_eq: Network + network_in: [Network!] + indexInBlock_eq: Int + indexInBlock_gt: Int + indexInBlock_gte: Int + indexInBlock_lt: Int + indexInBlock_lte: Int + indexInBlock_in: [Int!] + rootAccount_eq: String + rootAccount_contains: String + rootAccount_startsWith: String + rootAccount_endsWith: String + rootAccount_in: [String!] + controllerAccount_eq: String + controllerAccount_contains: String + controllerAccount_startsWith: String + controllerAccount_endsWith: String + controllerAccount_in: [String!] + handle_eq: String + handle_contains: String + handle_startsWith: String + handle_endsWith: String + handle_in: [String!] + initialBalance_eq: BigInt + initialBalance_gt: BigInt + initialBalance_gte: BigInt + initialBalance_lt: BigInt + initialBalance_lte: BigInt + initialBalance_in: [BigInt!] + invitingMember: MembershipWhereInput + newMember: MembershipWhereInput + metadata: MemberMetadataWhereInput + AND: [MemberInvitedEventWhereInput!] + OR: [MemberInvitedEventWhereInput!] + NOT: [MemberInvitedEventWhereInput!] } -input ProposalDiscussionThreadWhereUniqueInput { +input MemberInvitedEventWhereUniqueInput { id: ID! } -input ProposalDiscussionThreadCreateInput { - proposal: ID! - mode: JSONObject! +input MemberInvitedEventCreateInput { + inExtrinsic: String + inBlock: Float! + network: Network! + indexInBlock: Float! + invitingMember: ID! + newMember: ID! + rootAccount: String! + controllerAccount: String! + handle: String! + metadata: ID! + initialBalance: String! } -input ProposalDiscussionThreadUpdateInput { - proposal: ID - mode: JSONObject +input MemberInvitedEventUpdateInput { + inExtrinsic: String + inBlock: Float + network: Network + indexInBlock: Float + invitingMember: ID + newMember: ID + rootAccount: String + controllerAccount: String + handle: String + metadata: ID + initialBalance: String } -input ProposalDiscussionPostUpdatedEventWhereInput { +input MemberProfileUpdatedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18626,40 +18708,50 @@ input ProposalDiscussionPostUpdatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - text_eq: String - text_contains: String - text_startsWith: String - text_endsWith: String - text_in: [String!] - post: ProposalDiscussionPostWhereInput - AND: [ProposalDiscussionPostUpdatedEventWhereInput!] - OR: [ProposalDiscussionPostUpdatedEventWhereInput!] - NOT: [ProposalDiscussionPostUpdatedEventWhereInput!] + newHandle_eq: String + newHandle_contains: String + newHandle_startsWith: String + newHandle_endsWith: String + newHandle_in: [String!] + newHandleRaw_eq: String + newHandleRaw_contains: String + newHandleRaw_startsWith: String + newHandleRaw_endsWith: String + newHandleRaw_in: [String!] + member: MembershipWhereInput + newMetadata: MemberMetadataWhereInput + AND: [MemberProfileUpdatedEventWhereInput!] + OR: [MemberProfileUpdatedEventWhereInput!] + NOT: [MemberProfileUpdatedEventWhereInput!] } -input ProposalDiscussionPostUpdatedEventWhereUniqueInput { +input MemberProfileUpdatedEventWhereUniqueInput { id: ID! } -input ProposalDiscussionPostUpdatedEventCreateInput { +input MemberProfileUpdatedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - post: ID! - text: String! + member: ID! + newHandle: String + newHandleRaw: String + newMetadata: ID! } -input ProposalDiscussionPostUpdatedEventUpdateInput { +input MemberProfileUpdatedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - post: ID - text: String + member: ID + newHandle: String + newHandleRaw: String + newMetadata: ID } -input ProposalDiscussionPostCreatedEventWhereInput { +input MembershipBoughtEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18703,40 +18795,60 @@ input ProposalDiscussionPostCreatedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - text_eq: String - text_contains: String - text_startsWith: String - text_endsWith: String - text_in: [String!] - post: ProposalDiscussionPostWhereInput - AND: [ProposalDiscussionPostCreatedEventWhereInput!] - OR: [ProposalDiscussionPostCreatedEventWhereInput!] - NOT: [ProposalDiscussionPostCreatedEventWhereInput!] + rootAccount_eq: String + rootAccount_contains: String + rootAccount_startsWith: String + rootAccount_endsWith: String + rootAccount_in: [String!] + controllerAccount_eq: String + controllerAccount_contains: String + controllerAccount_startsWith: String + controllerAccount_endsWith: String + controllerAccount_in: [String!] + handle_eq: String + handle_contains: String + handle_startsWith: String + handle_endsWith: String + handle_in: [String!] + newMember: MembershipWhereInput + metadata: MemberMetadataWhereInput + referrer: MembershipWhereInput + AND: [MembershipBoughtEventWhereInput!] + OR: [MembershipBoughtEventWhereInput!] + NOT: [MembershipBoughtEventWhereInput!] } -input ProposalDiscussionPostCreatedEventWhereUniqueInput { +input MembershipBoughtEventWhereUniqueInput { id: ID! } -input ProposalDiscussionPostCreatedEventCreateInput { +input MembershipBoughtEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - post: ID! - text: String! + newMember: ID! + rootAccount: String! + controllerAccount: String! + handle: String! + metadata: ID! + referrer: ID } -input ProposalDiscussionPostCreatedEventUpdateInput { +input MembershipBoughtEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - post: ID - text: String + newMember: ID + rootAccount: String + controllerAccount: String + handle: String + metadata: ID + referrer: ID } -input ProposalDiscussionPostWhereInput { +input MemberMetadataWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18761,55 +18873,62 @@ input ProposalDiscussionPostWhereInput { deletedAt_gte: DateTime deletedById_eq: ID deletedById_in: [ID!] - status_json: JSONObject - isVisible_eq: Boolean - isVisible_in: [Boolean!] - text_eq: String - text_contains: String - text_startsWith: String - text_endsWith: String - text_in: [String!] - discussionThread: ProposalDiscussionThreadWhereInput - author: MembershipWhereInput - repliesTo: ProposalDiscussionPostWhereInput - updates_none: ProposalDiscussionPostUpdatedEventWhereInput - updates_some: ProposalDiscussionPostUpdatedEventWhereInput - updates_every: ProposalDiscussionPostUpdatedEventWhereInput - createdInEvent: ProposalDiscussionPostCreatedEventWhereInput - proposaldiscussionpostrepliesTo_none: ProposalDiscussionPostWhereInput - proposaldiscussionpostrepliesTo_some: ProposalDiscussionPostWhereInput - proposaldiscussionpostrepliesTo_every: ProposalDiscussionPostWhereInput - proposaldiscussionpostdeletedeventpost_none: ProposalDiscussionPostDeletedEventWhereInput - proposaldiscussionpostdeletedeventpost_some: ProposalDiscussionPostDeletedEventWhereInput - proposaldiscussionpostdeletedeventpost_every: ProposalDiscussionPostDeletedEventWhereInput - AND: [ProposalDiscussionPostWhereInput!] - OR: [ProposalDiscussionPostWhereInput!] - NOT: [ProposalDiscussionPostWhereInput!] + name_eq: String + name_contains: String + name_startsWith: String + name_endsWith: String + name_in: [String!] + avatar_json: JSONObject + about_eq: String + about_contains: String + about_startsWith: String + about_endsWith: String + about_in: [String!] + isVerifiedValidator_eq: Boolean + isVerifiedValidator_in: [Boolean!] + member: MembershipWhereInput + externalResources_none: MembershipExternalResourceWhereInput + externalResources_some: MembershipExternalResourceWhereInput + externalResources_every: MembershipExternalResourceWhereInput + membercreatedeventmetadata_none: MemberCreatedEventWhereInput + membercreatedeventmetadata_some: MemberCreatedEventWhereInput + membercreatedeventmetadata_every: MemberCreatedEventWhereInput + memberinvitedeventmetadata_none: MemberInvitedEventWhereInput + memberinvitedeventmetadata_some: MemberInvitedEventWhereInput + memberinvitedeventmetadata_every: MemberInvitedEventWhereInput + memberprofileupdatedeventnewMetadata_none: MemberProfileUpdatedEventWhereInput + memberprofileupdatedeventnewMetadata_some: MemberProfileUpdatedEventWhereInput + memberprofileupdatedeventnewMetadata_every: MemberProfileUpdatedEventWhereInput + membershipboughteventmetadata_none: MembershipBoughtEventWhereInput + membershipboughteventmetadata_some: MembershipBoughtEventWhereInput + membershipboughteventmetadata_every: MembershipBoughtEventWhereInput + membershipgiftedeventmetadata_none: MembershipGiftedEventWhereInput + membershipgiftedeventmetadata_some: MembershipGiftedEventWhereInput + membershipgiftedeventmetadata_every: MembershipGiftedEventWhereInput + AND: [MemberMetadataWhereInput!] + OR: [MemberMetadataWhereInput!] + NOT: [MemberMetadataWhereInput!] } -input ProposalDiscussionPostWhereUniqueInput { +input MemberMetadataWhereUniqueInput { id: ID! } -input ProposalDiscussionPostCreateInput { - discussionThread: ID! - author: ID! - status: JSONObject! - isVisible: Boolean! - text: String! - repliesTo: ID +input MemberMetadataCreateInput { + name: String + avatar: JSONObject! + about: String + isVerifiedValidator: Boolean } -input ProposalDiscussionPostUpdateInput { - discussionThread: ID - author: ID - status: JSONObject - isVisible: Boolean - text: String - repliesTo: ID +input MemberMetadataUpdateInput { + name: String + avatar: JSONObject + about: String + isVerifiedValidator: Boolean } -input ProposalDiscussionPostDeletedEventWhereInput { +input MembershipGiftedEventWhereInput { id_eq: ID id_in: [ID!] createdAt_eq: DateTime @@ -18853,33 +18972,54 @@ input ProposalDiscussionPostDeletedEventWhereInput { indexInBlock_lt: Int indexInBlock_lte: Int indexInBlock_in: [Int!] - post: ProposalDiscussionPostWhereInput - actor: MembershipWhereInput - AND: [ProposalDiscussionPostDeletedEventWhereInput!] - OR: [ProposalDiscussionPostDeletedEventWhereInput!] - NOT: [ProposalDiscussionPostDeletedEventWhereInput!] + rootAccount_eq: String + rootAccount_contains: String + rootAccount_startsWith: String + rootAccount_endsWith: String + rootAccount_in: [String!] + controllerAccount_eq: String + controllerAccount_contains: String + controllerAccount_startsWith: String + controllerAccount_endsWith: String + controllerAccount_in: [String!] + handle_eq: String + handle_contains: String + handle_startsWith: String + handle_endsWith: String + handle_in: [String!] + newMember: MembershipWhereInput + metadata: MemberMetadataWhereInput + AND: [MembershipGiftedEventWhereInput!] + OR: [MembershipGiftedEventWhereInput!] + NOT: [MembershipGiftedEventWhereInput!] } -input ProposalDiscussionPostDeletedEventWhereUniqueInput { +input MembershipGiftedEventWhereUniqueInput { id: ID! } -input ProposalDiscussionPostDeletedEventCreateInput { +input MembershipGiftedEventCreateInput { inExtrinsic: String inBlock: Float! network: Network! indexInBlock: Float! - post: ID! - actor: ID! + newMember: ID! + rootAccount: String! + controllerAccount: String! + handle: String! + metadata: ID! } -input ProposalDiscussionPostDeletedEventUpdateInput { +input MembershipGiftedEventUpdateInput { inExtrinsic: String inBlock: Float network: Network indexInBlock: Float - post: ID - actor: ID + newMember: ID + rootAccount: String + controllerAccount: String + handle: String + metadata: ID } input ProposalDiscussionWhitelistWhereInput { @@ -23018,6 +23158,53 @@ input StakeReleasedEventUpdateInput { stakingAccount: String } +input TagPermittedWorkerWhereInput { + id_eq: ID + id_in: [ID!] + createdAt_eq: DateTime + createdAt_lt: DateTime + createdAt_lte: DateTime + createdAt_gt: DateTime + createdAt_gte: DateTime + createdById_eq: ID + createdById_in: [ID!] + updatedAt_eq: DateTime + updatedAt_lt: DateTime + updatedAt_lte: DateTime + updatedAt_gt: DateTime + updatedAt_gte: DateTime + updatedById_eq: ID + updatedById_in: [ID!] + deletedAt_all: Boolean + deletedAt_eq: DateTime + deletedAt_lt: DateTime + deletedAt_lte: DateTime + deletedAt_gt: DateTime + deletedAt_gte: DateTime + deletedById_eq: ID + deletedById_in: [ID!] + workerId_eq: String + workerId_contains: String + workerId_startsWith: String + workerId_endsWith: String + workerId_in: [String!] + AND: [TagPermittedWorkerWhereInput!] + OR: [TagPermittedWorkerWhereInput!] + NOT: [TagPermittedWorkerWhereInput!] +} + +input TagPermittedWorkerWhereUniqueInput { + id: ID! +} + +input TagPermittedWorkerCreateInput { + workerId: String! +} + +input TagPermittedWorkerUpdateInput { + workerId: String +} + input VideoAssetsDeletedByModeratorEventWhereInput { id_eq: ID id_in: [ID!] @@ -23925,7 +24112,7 @@ type ThreadMovedEvent implements Event & BaseGraphQLObject { actorId: String! } -type BountyFundedEvent implements Event & BaseGraphQLObject { +type ProposalCreatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -23949,11 +24136,11 @@ type BountyFundedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - contribution: BountyContribution! - contributionId: String! + proposal: Proposal! + proposalId: String! } -type BountyFundingWithdrawalEvent implements Event & BaseGraphQLObject { +type ProposalDiscussionPostUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -23977,11 +24164,14 @@ type BountyFundingWithdrawalEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - contribution: BountyContribution! - contributionId: String! + post: ProposalDiscussionPost! + postId: String! + + """New post text""" + text: String! } -type WorkEntryAnnouncedEvent implements Event & BaseGraphQLObject { +type ProposalDiscussionPostCreatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24005,11 +24195,14 @@ type WorkEntryAnnouncedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - entry: BountyEntry! - entryId: String! + post: ProposalDiscussionPost! + postId: String! + + """Initial post text""" + text: String! } -type WorkEntryWithdrawnEvent implements Event & BaseGraphQLObject { +type ProposalDiscussionPostDeletedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24033,11 +24226,13 @@ type WorkEntryWithdrawnEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - entry: BountyEntry! - entryId: String! + post: ProposalDiscussionPost! + postId: String! + actor: Membership! + actorId: String! } -type WorkEntrySlashedEvent implements Event & BaseGraphQLObject { +type ProposalDiscussionThreadModeChangedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24061,11 +24256,16 @@ type WorkEntrySlashedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - entry: BountyEntry! - entryId: String! + thread: ProposalDiscussionThread! + threadId: String! + + """The new thread mode""" + newMode: ProposalDiscussionThreadMode! + actor: Membership! + actorId: String! } -type WorkSubmittedEvent implements Event & BaseGraphQLObject { +type ProposalStatusUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24089,21 +24289,14 @@ type WorkSubmittedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - bounty: Bounty! - bountyId: String! - entry: BountyEntry! - entryId: String! - - """Title of the work""" - title: String + proposal: Proposal! + proposalId: String! - """ - Description which contains the work itself as a URL, a BLOB, or just text - """ - description: String + """The new proposal intermediate status (Deciding/Gracing/Dormant)""" + newStatus: ProposalIntermediateStatus! } -type WorkEntrantFundsWithdrawnEvent implements Event & BaseGraphQLObject { +type ProposalVotedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24127,11 +24320,24 @@ type WorkEntrantFundsWithdrawnEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - entry: BountyEntry! - entryId: String! + voter: Membership! + voterId: String! + + """The kind of the vote that was casted""" + voteKind: ProposalVoteKind! + proposal: Proposal! + proposalId: String! + + """The rationale behind the vote""" + rationale: String! + + """ + The voting round - number representing which Deciding period the vote was casted in (starting with 1), useful when the proposal must be approved during multiple council terms (constitution > 1) + """ + votingRound: Int! } -type BountyCreatedEvent implements Event & BaseGraphQLObject { +type ProposalCancelledEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24155,11 +24361,11 @@ type BountyCreatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - bounty: Bounty! - bountyId: String! + proposal: Proposal! + proposalId: String! } -type BountyCanceledEvent implements Event & BaseGraphQLObject { +type ProposalDecisionMadeEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24183,11 +24389,14 @@ type BountyCanceledEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - bounty: Bounty! - bountyId: String! + proposal: Proposal! + proposalId: String! + + """The voting decision status""" + decisionStatus: ProposalDecisionStatus! } -type BountyVetoedEvent implements Event & BaseGraphQLObject { +type ProposalExecutedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24211,11 +24420,14 @@ type BountyVetoedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - bounty: Bounty! - bountyId: String! + proposal: Proposal! + proposalId: String! + + """The execution status""" + executionStatus: ProposalExecutionStatus! } -type BountyMaxFundingReachedEvent implements Event & BaseGraphQLObject { +type BountyFundedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24239,11 +24451,11 @@ type BountyMaxFundingReachedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - bounty: Bounty! - bountyId: String! + contribution: BountyContribution! + contributionId: String! } -type BountyRemovedEvent implements Event & BaseGraphQLObject { +type BountyFundingWithdrawalEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24267,11 +24479,11 @@ type BountyRemovedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - bounty: Bounty! - bountyId: String! + contribution: BountyContribution! + contributionId: String! } -type OracleJudgmentSubmittedEvent implements Event & BaseGraphQLObject { +type WorkEntryAnnouncedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24295,14 +24507,11 @@ type OracleJudgmentSubmittedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - bounty: Bounty! - bountyId: String! - - """Rationale of the judgment""" - rationale: String + entry: BountyEntry! + entryId: String! } -type BountyCreatorCherryWithdrawalEvent implements Event & BaseGraphQLObject { +type WorkEntryWithdrawnEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24326,11 +24535,11 @@ type BountyCreatorCherryWithdrawalEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - bounty: Bounty! - bountyId: String! + entry: BountyEntry! + entryId: String! } -type ThreadDeletedEvent implements Event & BaseGraphQLObject { +type WorkEntrySlashedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24354,11 +24563,11 @@ type ThreadDeletedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - thread: ForumThread! - threadId: String! + entry: BountyEntry! + entryId: String! } -type ThreadModeratedEvent implements Event & BaseGraphQLObject { +type WorkSubmittedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24382,16 +24591,21 @@ type ThreadModeratedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - thread: ForumThread! - threadId: String! + bounty: Bounty! + bountyId: String! + entry: BountyEntry! + entryId: String! - """Rationale behind the moderation""" - rationale: String! - actor: Worker! - actorId: String! + """Title of the work""" + title: String + + """ + Description which contains the work itself as a URL, a BLOB, or just text + """ + description: String } -type CategoryCreatedEvent implements Event & BaseGraphQLObject { +type WorkEntrantFundsWithdrawnEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24415,11 +24629,11 @@ type CategoryCreatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - category: ForumCategory! - categoryId: String! + entry: BountyEntry! + entryId: String! } -type CategoryArchivalStatusUpdatedEvent implements Event & BaseGraphQLObject { +type BountyCreatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24443,16 +24657,11 @@ type CategoryArchivalStatusUpdatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - category: ForumCategory! - categoryId: String! - - """The new archival status of the category (true = archived)""" - newArchivalStatus: Boolean! - actor: Worker! - actorId: String! + bounty: Bounty! + bountyId: String! } -type CategoryDeletedEvent implements Event & BaseGraphQLObject { +type BountyCanceledEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24476,13 +24685,11 @@ type CategoryDeletedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - category: ForumCategory! - categoryId: String! - actor: Worker! - actorId: String! + bounty: Bounty! + bountyId: String! } -type CategoryMembershipOfModeratorUpdatedEvent implements Event & BaseGraphQLObject { +type BountyVetoedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24506,18 +24713,11 @@ type CategoryMembershipOfModeratorUpdatedEvent implements Event & BaseGraphQLObj """Filtering options for interface implementers""" type: EventTypeOptions - moderator: Worker! - moderatorId: String! - category: ForumCategory! - categoryId: String! - - """ - The flag indicating whether the permissions to moderate the category are granted or revoked - """ - newCanModerateValue: Boolean! + bounty: Bounty! + bountyId: String! } -type LeaderSetEvent implements Event & BaseGraphQLObject { +type BountyMaxFundingReachedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24541,13 +24741,11 @@ type LeaderSetEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! - worker: Worker - workerId: String + bounty: Bounty! + bountyId: String! } -type LeaderUnsetEvent implements Event & BaseGraphQLObject { +type BountyRemovedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24571,13 +24769,11 @@ type LeaderUnsetEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! - leader: Worker! - leaderId: String! + bounty: Bounty! + bountyId: String! } -type MemberVerificationStatusUpdatedEvent implements Event & BaseGraphQLObject { +type OracleJudgmentSubmittedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24601,16 +24797,14 @@ type MemberVerificationStatusUpdatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - member: Membership! - memberId: String! - worker: Worker! - workerId: String! + bounty: Bounty! + bountyId: String! - """New status.""" - isVerified: Boolean! + """Rationale of the judgment""" + rationale: String } -type NewMissedRewardLevelReachedEvent implements Event & BaseGraphQLObject { +type BountyCreatorCherryWithdrawalEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24634,16 +24828,11 @@ type NewMissedRewardLevelReachedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! - worker: Worker! - workerId: String! - - """New missed reward amount""" - newMissedRewardAmount: BigInt! + bounty: Bounty! + bountyId: String! } -type StakeDecreasedEvent implements Event & BaseGraphQLObject { +type ThreadDeletedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24667,16 +24856,11 @@ type StakeDecreasedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! - worker: Worker! - workerId: String! - - """The amount of JOY the stake was decreased by""" - amount: BigInt! + thread: ForumThread! + threadId: String! } -type StakeIncreasedEvent implements Event & BaseGraphQLObject { +type ThreadModeratedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24700,16 +24884,16 @@ type StakeIncreasedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! - worker: Worker! - workerId: String! + thread: ForumThread! + threadId: String! - """The amount of JOY the stake was increased by""" - amount: BigInt! + """Rationale behind the moderation""" + rationale: String! + actor: Worker! + actorId: String! } -type TerminatedLeaderEvent implements Event & BaseGraphQLObject { +type CategoryCreatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24733,19 +24917,11 @@ type TerminatedLeaderEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! - worker: Worker! - workerId: String! - - """Slash amount (if any)""" - penalty: BigInt - - """Optional rationale""" - rationale: String + category: ForumCategory! + categoryId: String! } -type TerminatedWorkerEvent implements Event & BaseGraphQLObject { +type CategoryArchivalStatusUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24764,24 +24940,21 @@ type TerminatedWorkerEvent implements Event & BaseGraphQLObject { """Network the block was produced in""" network: Network! - """Index of event in block from which it was emitted.""" - indexInBlock: Int! - - """Filtering options for interface implementers""" - type: EventTypeOptions - group: WorkingGroup! - groupId: String! - worker: Worker! - workerId: String! + """Index of event in block from which it was emitted.""" + indexInBlock: Int! - """Slash amount (if any)""" - penalty: BigInt + """Filtering options for interface implementers""" + type: EventTypeOptions + category: ForumCategory! + categoryId: String! - """Optional rationale""" - rationale: String + """The new archival status of the category (true = archived)""" + newArchivalStatus: Boolean! + actor: Worker! + actorId: String! } -type WorkerExitedEvent implements Event & BaseGraphQLObject { +type CategoryDeletedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24805,13 +24978,13 @@ type WorkerExitedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! - worker: Worker! - workerId: String! + category: ForumCategory! + categoryId: String! + actor: Worker! + actorId: String! } -type WorkerRewardAccountUpdatedEvent implements Event & BaseGraphQLObject { +type CategoryMembershipOfModeratorUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24835,16 +25008,18 @@ type WorkerRewardAccountUpdatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! - worker: Worker! - workerId: String! + moderator: Worker! + moderatorId: String! + category: ForumCategory! + categoryId: String! - """New reward account""" - newRewardAccount: String! + """ + The flag indicating whether the permissions to moderate the category are granted or revoked + """ + newCanModerateValue: Boolean! } -type WorkerRewardAmountUpdatedEvent implements Event & BaseGraphQLObject { +type LeaderSetEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24870,14 +25045,11 @@ type WorkerRewardAmountUpdatedEvent implements Event & BaseGraphQLObject { type: EventTypeOptions group: WorkingGroup! groupId: String! - worker: Worker! - workerId: String! - - """New worker reward per block""" - newRewardPerBlock: BigInt! + worker: Worker + workerId: String } -type WorkerRoleAccountUpdatedEvent implements Event & BaseGraphQLObject { +type LeaderUnsetEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24903,14 +25075,11 @@ type WorkerRoleAccountUpdatedEvent implements Event & BaseGraphQLObject { type: EventTypeOptions group: WorkingGroup! groupId: String! - worker: Worker! - workerId: String! - - """New role account""" - newRoleAccount: String! + leader: Worker! + leaderId: String! } -type WorkerStartedLeavingEvent implements Event & BaseGraphQLObject { +type MemberVerificationStatusUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24934,16 +25103,16 @@ type WorkerStartedLeavingEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - group: WorkingGroup! - groupId: String! + member: Membership! + memberId: String! worker: Worker! workerId: String! - """Optional rationale""" - rationale: String + """New status.""" + isVerified: Boolean! } -type StatusTextChangedEvent implements Event & BaseGraphQLObject { +type NewMissedRewardLevelReachedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -24969,17 +25138,14 @@ type StatusTextChangedEvent implements Event & BaseGraphQLObject { type: EventTypeOptions group: WorkingGroup! groupId: String! + worker: Worker! + workerId: String! - """Original action metadata as hex string""" - metadata: String - - """Event result depeding on the metadata action type""" - result: WorkingGroupMetadataActionResult! - upcomingworkinggroupopeningcreatedInEvent: [UpcomingWorkingGroupOpening!] - workinggroupmetadatasetInEvent: [WorkingGroupMetadata!] + """New missed reward amount""" + newMissedRewardAmount: BigInt! } -type BudgetFundedEvent implements Event & BaseGraphQLObject { +type StakeDecreasedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25005,17 +25171,14 @@ type BudgetFundedEvent implements Event & BaseGraphQLObject { type: EventTypeOptions group: WorkingGroup! groupId: String! - member: Membership! - memberId: String! - - """Rationale provided by the member""" - rationale: String! + worker: Worker! + workerId: String! - """Amount added to the current budget""" + """The amount of JOY the stake was decreased by""" amount: BigInt! } -type BudgetSetEvent implements Event & BaseGraphQLObject { +type StakeIncreasedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25041,12 +25204,14 @@ type BudgetSetEvent implements Event & BaseGraphQLObject { type: EventTypeOptions group: WorkingGroup! groupId: String! + worker: Worker! + workerId: String! - """New working group budget""" - newBudget: BigInt! + """The amount of JOY the stake was increased by""" + amount: BigInt! } -type BudgetSpendingEvent implements Event & BaseGraphQLObject { +type TerminatedLeaderEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25072,18 +25237,17 @@ type BudgetSpendingEvent implements Event & BaseGraphQLObject { type: EventTypeOptions group: WorkingGroup! groupId: String! + worker: Worker! + workerId: String! - """Reciever account address""" - reciever: String! - - """Amount beeing spent""" - amount: BigInt! + """Slash amount (if any)""" + penalty: BigInt """Optional rationale""" rationale: String } -type BudgetUpdatedEvent implements Event & BaseGraphQLObject { +type TerminatedWorkerEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25109,12 +25273,17 @@ type BudgetUpdatedEvent implements Event & BaseGraphQLObject { type: EventTypeOptions group: WorkingGroup! groupId: String! + worker: Worker! + workerId: String! - """Amount substracted from / added to the current budget""" - budgetChangeAmount: BigInt! + """Slash amount (if any)""" + penalty: BigInt + + """Optional rationale""" + rationale: String } -type OpeningFilledEvent implements Event & BaseGraphQLObject { +type WorkerExitedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25140,12 +25309,11 @@ type OpeningFilledEvent implements Event & BaseGraphQLObject { type: EventTypeOptions group: WorkingGroup! groupId: String! - opening: WorkingGroupOpening! - openingId: String! - workersHired: [Worker!]! + worker: Worker! + workerId: String! } -type AuctionBidCanceledEvent implements Event & BaseGraphQLObject { +type WorkerRewardAccountUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25155,13 +25323,13 @@ type AuctionBidCanceledEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25169,17 +25337,16 @@ type AuctionBidCanceledEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - member: Membership! - memberId: String! - video: Video! - videoId: String! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String + group: WorkingGroup! + groupId: String! + worker: Worker! + workerId: String! + + """New reward account""" + newRewardAccount: String! } -type NftIssuedEvent implements Event & BaseGraphQLObject { +type WorkerRewardAmountUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25189,13 +25356,13 @@ type NftIssuedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25203,26 +25370,16 @@ type NftIssuedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + group: WorkingGroup! + groupId: String! + worker: Worker! + workerId: String! - """Content actor that issued the NFT.""" - contentActor: ContentActor! - video: Video! - videoId: String! - videoCategory: VideoCategory - videoCategoryId: String - - """Royalty for the NFT/video.""" - royalty: Float - - """NFT's metadata.""" - metadata: String! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String + """New worker reward per block""" + newRewardPerBlock: BigInt! } -type EnglishAuctionStartedEvent implements Event & BaseGraphQLObject { +type WorkerRoleAccountUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25232,13 +25389,13 @@ type EnglishAuctionStartedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25246,20 +25403,16 @@ type EnglishAuctionStartedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + group: WorkingGroup! + groupId: String! + worker: Worker! + workerId: String! - """Actor that started this auction.""" - actor: ContentActor! - video: Video! - videoId: String! - auction: Auction! - auctionId: String! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String + """New role account""" + newRoleAccount: String! } -type OpenAuctionStartedEvent implements Event & BaseGraphQLObject { +type WorkerStartedLeavingEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25269,13 +25422,13 @@ type OpenAuctionStartedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25283,20 +25436,16 @@ type OpenAuctionStartedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + group: WorkingGroup! + groupId: String! + worker: Worker! + workerId: String! - """Actor that started this auction.""" - actor: ContentActor! - video: Video! - videoId: String! - auction: Auction! - auctionId: String! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String + """Optional rationale""" + rationale: String } -type BidMadeCompletingAuctionEvent implements Event & BaseGraphQLObject { +type StatusTextChangedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25306,13 +25455,13 @@ type BidMadeCompletingAuctionEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25320,27 +25469,19 @@ type BidMadeCompletingAuctionEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - member: Membership! - memberId: String! - video: Video! - videoId: String! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String + group: WorkingGroup! + groupId: String! - """Price for which the NFT was bought""" - price: BigInt! - winningBid: Bid! - winningBidId: String! - previousTopBid: Bid - previousTopBidId: String - previousTopBidder: Membership - previousTopBidderId: String - bidders: [Membership!]! + """Original action metadata as hex string""" + metadata: String + + """Event result depeding on the metadata action type""" + result: WorkingGroupMetadataActionResult! + upcomingworkinggroupopeningcreatedInEvent: [UpcomingWorkingGroupOpening!] + workinggroupmetadatasetInEvent: [WorkingGroupMetadata!] } -type EnglishAuctionSettledEvent implements Event & BaseGraphQLObject { +type BudgetFundedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25350,13 +25491,13 @@ type EnglishAuctionSettledEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25364,20 +25505,19 @@ type EnglishAuctionSettledEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - winner: Membership! - winnerId: String! - winningBid: Bid! - winningBidId: String! - video: Video! - videoId: String! - bidders: [Membership!]! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String + group: WorkingGroup! + groupId: String! + member: Membership! + memberId: String! + + """Rationale provided by the member""" + rationale: String! + + """Amount added to the current budget""" + amount: BigInt! } -type OpenAuctionBidAcceptedEvent implements Event & BaseGraphQLObject { +type BudgetSetEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25387,13 +25527,13 @@ type OpenAuctionBidAcceptedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25401,23 +25541,14 @@ type OpenAuctionBidAcceptedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + group: WorkingGroup! + groupId: String! - """Content actor that accepted the bid.""" - contentActor: ContentActor! - video: Video! - videoId: String! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String - winningBid: Bid - winningBidId: String - winningBidder: Membership - winningBidderId: String - bidders: [Membership!]! + """New working group budget""" + newBudget: BigInt! } -type AuctionBidMadeEvent implements Event & BaseGraphQLObject { +type BudgetSpendingEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25427,13 +25558,13 @@ type AuctionBidMadeEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25441,24 +25572,20 @@ type AuctionBidMadeEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - member: Membership! - memberId: String! - video: Video! - videoId: String! + group: WorkingGroup! + groupId: String! - """Bid made.""" - bidAmount: BigInt! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String - previousTopBid: Bid - previousTopBidId: String - previousTopBidder: Membership - previousTopBidderId: String + """Reciever account address""" + reciever: String! + + """Amount beeing spent""" + amount: BigInt! + + """Optional rationale""" + rationale: String } -type AuctionCanceledEvent implements Event & BaseGraphQLObject { +type BudgetUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25468,13 +25595,13 @@ type AuctionCanceledEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25482,18 +25609,14 @@ type AuctionCanceledEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + group: WorkingGroup! + groupId: String! - """Content actor canceling the event.""" - contentActor: ContentActor! - video: Video! - videoId: String! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String + """Amount substracted from / added to the current budget""" + budgetChangeAmount: BigInt! } -type BuyNowCanceledEvent implements Event & BaseGraphQLObject { +type OpeningFilledEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25503,13 +25626,13 @@ type BuyNowCanceledEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted.""" + """Hash of the extrinsic which caused the event to be emitted""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in.""" + """Network the block was produced in""" network: Network! """Index of event in block from which it was emitted.""" @@ -25517,18 +25640,14 @@ type BuyNowCanceledEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - video: Video! - videoId: String! - - """Content actor acting as NFT owner.""" - contentActor: ContentActor! - ownerMember: Membership - ownerMemberId: String - ownerCuratorGroup: CuratorGroup - ownerCuratorGroupId: String + group: WorkingGroup! + groupId: String! + opening: WorkingGroupOpening! + openingId: String! + workersHired: [Worker!]! } -type BuyNowPriceUpdatedEvent implements Event & BaseGraphQLObject { +type AuctionBidCanceledEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25552,21 +25671,17 @@ type BuyNowPriceUpdatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + member: Membership! + memberId: String! video: Video! videoId: String! - - """Content actor acting as NFT owner.""" - contentActor: ContentActor! - - """New buy-now price.""" - newPrice: BigInt! ownerMember: Membership ownerMemberId: String ownerCuratorGroup: CuratorGroup ownerCuratorGroupId: String } -type NftBoughtEvent implements Event & BaseGraphQLObject { +type NftIssuedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25590,20 +25705,26 @@ type NftBoughtEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + + """Content actor that issued the NFT.""" + contentActor: ContentActor! video: Video! videoId: String! - member: Membership! - memberId: String! + videoCategory: VideoCategory + videoCategoryId: String + + """Royalty for the NFT/video.""" + royalty: Float + + """NFT's metadata.""" + metadata: String! ownerMember: Membership ownerMemberId: String ownerCuratorGroup: CuratorGroup ownerCuratorGroupId: String - - """Price for which NFT was bought""" - price: BigInt! } -type NftSlingedBackToTheOriginalArtistEvent implements Event & BaseGraphQLObject { +type EnglishAuctionStartedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25627,18 +25748,20 @@ type NftSlingedBackToTheOriginalArtistEvent implements Event & BaseGraphQLObject """Filtering options for interface implementers""" type: EventTypeOptions + + """Actor that started this auction.""" + actor: ContentActor! video: Video! videoId: String! - - """Content actor who slung back the NFT.""" - contentActor: ContentActor! + auction: Auction! + auctionId: String! ownerMember: Membership ownerMemberId: String ownerCuratorGroup: CuratorGroup ownerCuratorGroupId: String } -type OfferAcceptedEvent implements Event & BaseGraphQLObject { +type OpenAuctionStartedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25662,18 +25785,20 @@ type OfferAcceptedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + + """Actor that started this auction.""" + actor: ContentActor! video: Video! videoId: String! + auction: Auction! + auctionId: String! ownerMember: Membership ownerMemberId: String ownerCuratorGroup: CuratorGroup ownerCuratorGroupId: String - - """Price for which the NFT was bought""" - price: BigInt } -type OfferCanceledEvent implements Event & BaseGraphQLObject { +type BidMadeCompletingAuctionEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25697,18 +25822,27 @@ type OfferCanceledEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + member: Membership! + memberId: String! video: Video! videoId: String! - - """Content actor acting as NFT owner.""" - contentActor: ContentActor! ownerMember: Membership ownerMemberId: String ownerCuratorGroup: CuratorGroup ownerCuratorGroupId: String + + """Price for which the NFT was bought""" + price: BigInt! + winningBid: Bid! + winningBidId: String! + previousTopBid: Bid + previousTopBidId: String + previousTopBidder: Membership + previousTopBidderId: String + bidders: [Membership!]! } -type OfferStartedEvent implements Event & BaseGraphQLObject { +type EnglishAuctionSettledEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25732,23 +25866,20 @@ type OfferStartedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions + winner: Membership! + winnerId: String! + winningBid: Bid! + winningBidId: String! video: Video! videoId: String! - - """Content actor acting as NFT owner.""" - contentActor: ContentActor! - member: Membership! - memberId: String! - - """Offer's price.""" - price: BigInt + bidders: [Membership!]! ownerMember: Membership ownerMemberId: String ownerCuratorGroup: CuratorGroup ownerCuratorGroupId: String } -type ChannelRewardClaimedEvent implements Event & BaseGraphQLObject { +type OpenAuctionBidAcceptedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25772,14 +25903,23 @@ type ChannelRewardClaimedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - channel: Channel! - channelId: String! - """Reward amount claimed""" - amount: BigInt! + """Content actor that accepted the bid.""" + contentActor: ContentActor! + video: Video! + videoId: String! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String + winningBid: Bid + winningBidId: String + winningBidder: Membership + winningBidderId: String + bidders: [Membership!]! } -type ChannelFundsWithdrawnEvent implements Event & BaseGraphQLObject { +type AuctionBidMadeEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25803,20 +25943,24 @@ type ChannelFundsWithdrawnEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - channel: Channel! - channelId: String! - - """Reward amount claimed""" - amount: BigInt! - - """Destination account ID. Null in case the funds destination was Council""" - account: String + member: Membership! + memberId: String! + video: Video! + videoId: String! - """Content actor""" - actor: ContentActor! + """Bid made.""" + bidAmount: BigInt! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String + previousTopBid: Bid + previousTopBidId: String + previousTopBidder: Membership + previousTopBidderId: String } -type ChannelRewardClaimedAndWithdrawnEvent implements Event & BaseGraphQLObject { +type AuctionCanceledEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25840,20 +25984,18 @@ type ChannelRewardClaimedAndWithdrawnEvent implements Event & BaseGraphQLObject """Filtering options for interface implementers""" type: EventTypeOptions - channel: Channel! - channelId: String! - - """Reward amount claimed""" - amount: BigInt! - """Destination account ID. Null in case the funds destination was Council""" - account: String - - """Content actor""" - actor: ContentActor! + """Content actor canceling the event.""" + contentActor: ContentActor! + video: Video! + videoId: String! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String } -type CommentTextUpdatedEvent implements Event & BaseGraphQLObject { +type BuyNowCanceledEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25863,13 +26005,13 @@ type CommentTextUpdatedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -25877,18 +26019,18 @@ type CommentTextUpdatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - comment: Comment! - commentId: String! video: Video! videoId: String! - videoChannel: Channel! - videoChannelId: String! - """New comment text""" - newText: String! + """Content actor acting as NFT owner.""" + contentActor: ContentActor! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String } -type CommentDeletedEvent implements Event & BaseGraphQLObject { +type BuyNowPriceUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25898,13 +26040,13 @@ type CommentDeletedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -25912,15 +26054,21 @@ type CommentDeletedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - comment: Comment! - commentId: String! video: Video! videoId: String! - videoChannel: Channel! - videoChannelId: String! + + """Content actor acting as NFT owner.""" + contentActor: ContentActor! + + """New buy-now price.""" + newPrice: BigInt! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String } -type CommentModeratedEvent implements Event & BaseGraphQLObject { +type NftBoughtEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25930,13 +26078,13 @@ type CommentModeratedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -25944,21 +26092,20 @@ type CommentModeratedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - comment: Comment! - commentId: String! video: Video! videoId: String! - videoChannel: Channel! - videoChannelId: String! - - """The actor responsible for the removal of comment""" - actor: ContentActor! + member: Membership! + memberId: String! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String - """Comment deletion rationale""" - rationale: String! + """Price for which NFT was bought""" + price: BigInt! } -type CommentPinnedEvent implements Event & BaseGraphQLObject { +type NftSlingedBackToTheOriginalArtistEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -25968,13 +26115,13 @@ type CommentPinnedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -25982,18 +26129,18 @@ type CommentPinnedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - comment: Comment! - commentId: String! video: Video! videoId: String! - videoChannel: Channel! - videoChannelId: String! - """The action performed. true if comment is pinned, otherwise false.""" - action: Boolean! + """Content actor who slung back the NFT.""" + contentActor: ContentActor! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String } -type CommentReactedEvent implements Event & BaseGraphQLObject { +type OfferAcceptedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26003,13 +26150,13 @@ type CommentReactedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -26017,20 +26164,18 @@ type CommentReactedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - comment: Comment! - commentId: String! video: Video! videoId: String! - videoChannel: Channel! - videoChannelId: String! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String - """The reaction id""" - reactionResult: Int! - reactingMember: Membership! - reactingMemberId: String! + """Price for which the NFT was bought""" + price: BigInt } -type CommentCreatedEvent implements Event & BaseGraphQLObject { +type OfferCanceledEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26040,13 +26185,13 @@ type CommentCreatedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -26054,20 +26199,18 @@ type CommentCreatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - comment: Comment! - commentId: String! - parentCommentAuthor: Membership - parentCommentAuthorId: String video: Video! videoId: String! - videoChannel: Channel! - videoChannelId: String! - """Comment's original text""" - text: String! + """Content actor acting as NFT owner.""" + contentActor: ContentActor! + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String } -type MemberBannedFromChannelEvent implements Event & BaseGraphQLObject { +type OfferStartedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26077,13 +26220,13 @@ type MemberBannedFromChannelEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -26091,18 +26234,23 @@ type MemberBannedFromChannelEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - channel: Channel! - channelId: String! + video: Video! + videoId: String! + + """Content actor acting as NFT owner.""" + contentActor: ContentActor! member: Membership! memberId: String! - """ - The action performed. true if member is banned, false if member is unbanned - """ - action: Boolean! + """Offer's price.""" + price: BigInt + ownerMember: Membership + ownerMemberId: String + ownerCuratorGroup: CuratorGroup + ownerCuratorGroupId: String } -type VideoReactedEvent implements Event & BaseGraphQLObject { +type ChannelRewardClaimedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26112,13 +26260,13 @@ type VideoReactedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -26126,18 +26274,14 @@ type VideoReactedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - video: Video! - videoId: String! - videoChannel: Channel! - videoChannelId: String! + channel: Channel! + channelId: String! - """The reaction result""" - reactionResult: VideoReactionOptions! - reactingMember: Membership! - reactingMemberId: String! + """Reward amount claimed""" + amount: BigInt! } -type VideoReactionsPreferenceEvent implements Event & BaseGraphQLObject { +type ChannelFundsWithdrawnEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26147,13 +26291,13 @@ type VideoReactionsPreferenceEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -26161,14 +26305,20 @@ type VideoReactionsPreferenceEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - video: Video! - videoId: String! + channel: Channel! + channelId: String! - """Is comment section enabled (true if enabled)""" - reactionsStatus: Boolean! + """Reward amount claimed""" + amount: BigInt! + + """Destination account ID. Null in case the funds destination was Council""" + account: String + + """Content actor""" + actor: ContentActor! } -type MemberCreatedEvent implements Event & BaseGraphQLObject { +type ChannelRewardClaimedAndWithdrawnEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26178,13 +26328,13 @@ type MemberCreatedEvent implements Event & BaseGraphQLObject { deletedById: ID version: Int! - """Hash of the extrinsic which caused the event to be emitted""" + """Hash of the extrinsic which caused the event to be emitted.""" inExtrinsic: String """Blocknumber of the block in which the event was emitted.""" inBlock: Int! - """Network the block was produced in""" + """Network the block was produced in.""" network: Network! """Index of event in block from which it was emitted.""" @@ -26192,25 +26342,20 @@ type MemberCreatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - newMember: Membership! - newMemberId: String! - - """New member root account in SS58 encoding.""" - rootAccount: String! + channel: Channel! + channelId: String! - """New member controller in SS58 encoding.""" - controllerAccount: String! + """Reward amount claimed""" + amount: BigInt! - """New member handle.""" - handle: String! - metadata: MemberMetadata! - metadataId: String! + """Destination account ID. Null in case the funds destination was Council""" + account: String - """Whether member is founding member.""" - isFoundingMember: Boolean! + """Content actor""" + actor: ContentActor! } -type MemberInvitedEvent implements Event & BaseGraphQLObject { +type CommentTextUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26234,27 +26379,18 @@ type MemberInvitedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - invitingMember: Membership! - invitingMemberId: String! - newMember: Membership! - newMemberId: String! - - """New member root account in SS58 encoding.""" - rootAccount: String! - - """New member controller in SS58 encoding.""" - controllerAccount: String! - - """New member handle.""" - handle: String! - metadata: MemberMetadata! - metadataId: String! + comment: Comment! + commentId: String! + video: Video! + videoId: String! + videoChannel: Channel! + videoChannelId: String! - """Member's initial, invitation-locked balance""" - initialBalance: BigInt! + """New comment text""" + newText: String! } -type MemberProfileUpdatedEvent implements Event & BaseGraphQLObject { +type CommentDeletedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26277,24 +26413,16 @@ type MemberProfileUpdatedEvent implements Event & BaseGraphQLObject { indexInBlock: Int! """Filtering options for interface implementers""" - type: EventTypeOptions - member: Membership! - memberId: String! - - """ - New member handle (utf-8 string). Null means no new value was provided. - """ - newHandle: String - - """ - New member handle (raw hex string). Null means no new value was provided. - """ - newHandleRaw: String - newMetadata: MemberMetadata! - newMetadataId: String! + type: EventTypeOptions + comment: Comment! + commentId: String! + video: Video! + videoId: String! + videoChannel: Channel! + videoChannelId: String! } -type MembershipBoughtEvent implements Event & BaseGraphQLObject { +type CommentModeratedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26318,24 +26446,21 @@ type MembershipBoughtEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - newMember: Membership! - newMemberId: String! - - """New member root account in SS58 encoding.""" - rootAccount: String! + comment: Comment! + commentId: String! + video: Video! + videoId: String! + videoChannel: Channel! + videoChannelId: String! - """New member controller in SS58 encoding.""" - controllerAccount: String! + """The actor responsible for the removal of comment""" + actor: ContentActor! - """New member handle.""" - handle: String! - metadata: MemberMetadata! - metadataId: String! - referrer: Membership - referrerId: String + """Comment deletion rationale""" + rationale: String! } -type MembershipGiftedEvent implements Event & BaseGraphQLObject { +type CommentPinnedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26359,22 +26484,18 @@ type MembershipGiftedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - newMember: Membership! - newMemberId: String! - - """New member root account in SS58 encoding.""" - rootAccount: String! - - """New member controller in SS58 encoding.""" - controllerAccount: String! + comment: Comment! + commentId: String! + video: Video! + videoId: String! + videoChannel: Channel! + videoChannelId: String! - """New member handle.""" - handle: String! - metadata: MemberMetadata! - metadataId: String! + """The action performed. true if comment is pinned, otherwise false.""" + action: Boolean! } -type ProposalCreatedEvent implements Event & BaseGraphQLObject { +type CommentReactedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26398,11 +26519,20 @@ type ProposalCreatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - proposal: Proposal! - proposalId: String! + comment: Comment! + commentId: String! + video: Video! + videoId: String! + videoChannel: Channel! + videoChannelId: String! + + """The reaction id""" + reactionResult: Int! + reactingMember: Membership! + reactingMemberId: String! } -type ProposalStatusUpdatedEvent implements Event & BaseGraphQLObject { +type CommentCreatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26426,14 +26556,20 @@ type ProposalStatusUpdatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - proposal: Proposal! - proposalId: String! + comment: Comment! + commentId: String! + parentCommentAuthor: Membership + parentCommentAuthorId: String + video: Video! + videoId: String! + videoChannel: Channel! + videoChannelId: String! - """The new proposal intermediate status (Deciding/Gracing/Dormant)""" - newStatus: ProposalIntermediateStatus! + """Comment's original text""" + text: String! } -type ProposalVotedEvent implements Event & BaseGraphQLObject { +type MemberBannedFromChannelEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26457,24 +26593,18 @@ type ProposalVotedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - voter: Membership! - voterId: String! - - """The kind of the vote that was casted""" - voteKind: ProposalVoteKind! - proposal: Proposal! - proposalId: String! - - """The rationale behind the vote""" - rationale: String! + channel: Channel! + channelId: String! + member: Membership! + memberId: String! """ - The voting round - number representing which Deciding period the vote was casted in (starting with 1), useful when the proposal must be approved during multiple council terms (constitution > 1) + The action performed. true if member is banned, false if member is unbanned """ - votingRound: Int! + action: Boolean! } -type ProposalCancelledEvent implements Event & BaseGraphQLObject { +type VideoReactedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26498,11 +26628,18 @@ type ProposalCancelledEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - proposal: Proposal! - proposalId: String! + video: Video! + videoId: String! + videoChannel: Channel! + videoChannelId: String! + + """The reaction result""" + reactionResult: VideoReactionOptions! + reactingMember: Membership! + reactingMemberId: String! } -type ProposalDecisionMadeEvent implements Event & BaseGraphQLObject { +type VideoReactionsPreferenceEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26526,14 +26663,14 @@ type ProposalDecisionMadeEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - proposal: Proposal! - proposalId: String! + video: Video! + videoId: String! - """The voting decision status""" - decisionStatus: ProposalDecisionStatus! + """Is comment section enabled (true if enabled)""" + reactionsStatus: Boolean! } -type ProposalExecutedEvent implements Event & BaseGraphQLObject { +type MemberCreatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26557,14 +26694,25 @@ type ProposalExecutedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - proposal: Proposal! - proposalId: String! + newMember: Membership! + newMemberId: String! - """The execution status""" - executionStatus: ProposalExecutionStatus! + """New member root account in SS58 encoding.""" + rootAccount: String! + + """New member controller in SS58 encoding.""" + controllerAccount: String! + + """New member handle.""" + handle: String! + metadata: MemberMetadata! + metadataId: String! + + """Whether member is founding member.""" + isFoundingMember: Boolean! } -type ProposalDiscussionThreadModeChangedEvent implements Event & BaseGraphQLObject { +type MemberInvitedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26588,16 +26736,27 @@ type ProposalDiscussionThreadModeChangedEvent implements Event & BaseGraphQLObje """Filtering options for interface implementers""" type: EventTypeOptions - thread: ProposalDiscussionThread! - threadId: String! + invitingMember: Membership! + invitingMemberId: String! + newMember: Membership! + newMemberId: String! - """The new thread mode""" - newMode: ProposalDiscussionThreadMode! - actor: Membership! - actorId: String! + """New member root account in SS58 encoding.""" + rootAccount: String! + + """New member controller in SS58 encoding.""" + controllerAccount: String! + + """New member handle.""" + handle: String! + metadata: MemberMetadata! + metadataId: String! + + """Member's initial, invitation-locked balance""" + initialBalance: BigInt! } -type ProposalDiscussionPostUpdatedEvent implements Event & BaseGraphQLObject { +type MemberProfileUpdatedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26621,14 +26780,23 @@ type ProposalDiscussionPostUpdatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - post: ProposalDiscussionPost! - postId: String! + member: Membership! + memberId: String! - """New post text""" - text: String! + """ + New member handle (utf-8 string). Null means no new value was provided. + """ + newHandle: String + + """ + New member handle (raw hex string). Null means no new value was provided. + """ + newHandleRaw: String + newMetadata: MemberMetadata! + newMetadataId: String! } -type ProposalDiscussionPostCreatedEvent implements Event & BaseGraphQLObject { +type MembershipBoughtEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26652,14 +26820,24 @@ type ProposalDiscussionPostCreatedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - post: ProposalDiscussionPost! - postId: String! + newMember: Membership! + newMemberId: String! - """Initial post text""" - text: String! + """New member root account in SS58 encoding.""" + rootAccount: String! + + """New member controller in SS58 encoding.""" + controllerAccount: String! + + """New member handle.""" + handle: String! + metadata: MemberMetadata! + metadataId: String! + referrer: Membership + referrerId: String } -type ProposalDiscussionPostDeletedEvent implements Event & BaseGraphQLObject { +type MembershipGiftedEvent implements Event & BaseGraphQLObject { id: ID! createdAt: DateTime! createdById: ID! @@ -26683,10 +26861,19 @@ type ProposalDiscussionPostDeletedEvent implements Event & BaseGraphQLObject { """Filtering options for interface implementers""" type: EventTypeOptions - post: ProposalDiscussionPost! - postId: String! - actor: Membership! - actorId: String! + newMember: Membership! + newMemberId: String! + + """New member root account in SS58 encoding.""" + rootAccount: String! + + """New member controller in SS58 encoding.""" + controllerAccount: String! + + """New member handle.""" + handle: String! + metadata: MemberMetadata! + metadataId: String! } type VoteCastEvent implements Event & BaseGraphQLObject { @@ -28229,6 +28416,12 @@ type Query { storageDataObjects(offset: Int, limit: Int = 50, where: StorageDataObjectWhereInput, orderBy: [StorageDataObjectOrderByInput!]): [StorageDataObject!]! storageDataObjectByUniqueInput(where: StorageDataObjectWhereUniqueInput!): StorageDataObject storageDataObjectsConnection(first: Int, after: String, last: Int, before: String, where: StorageDataObjectWhereInput, orderBy: [StorageDataObjectOrderByInput!]): StorageDataObjectConnection! + tagPermittedWorkers(offset: Int, limit: Int = 50, where: TagPermittedWorkerWhereInput, orderBy: [TagPermittedWorkerOrderByInput!]): [TagPermittedWorker!]! + tagPermittedWorkerByUniqueInput(where: TagPermittedWorkerWhereUniqueInput!): TagPermittedWorker + tagPermittedWorkersConnection(first: Int, after: String, last: Int, before: String, where: TagPermittedWorkerWhereInput, orderBy: [TagPermittedWorkerOrderByInput!]): TagPermittedWorkerConnection! + tags(offset: Int, limit: Int = 50, where: TagWhereInput, orderBy: [TagOrderByInput!]): [Tag!]! + tagByUniqueInput(where: TagWhereUniqueInput!): Tag + tagsConnection(first: Int, after: String, last: Int, before: String, where: TagWhereInput, orderBy: [TagOrderByInput!]): TagConnection! terminatedLeaderEvents(offset: Int, limit: Int = 50, where: TerminatedLeaderEventWhereInput, orderBy: [TerminatedLeaderEventOrderByInput!]): [TerminatedLeaderEvent!]! terminatedLeaderEventByUniqueInput(where: TerminatedLeaderEventWhereUniqueInput!): TerminatedLeaderEvent terminatedLeaderEventsConnection(first: Int, after: String, last: Int, before: String, where: TerminatedLeaderEventWhereInput, orderBy: [TerminatedLeaderEventOrderByInput!]): TerminatedLeaderEventConnection! @@ -31972,6 +32165,34 @@ enum StorageDataObjectOrderByInput { unsetAt_DESC } +enum TagPermittedWorkerOrderByInput { + createdAt_ASC + createdAt_DESC + updatedAt_ASC + updatedAt_DESC + deletedAt_ASC + deletedAt_DESC + workerId_ASC + workerId_DESC +} + +enum TagOrderByInput { + createdAt_ASC + createdAt_DESC + updatedAt_ASC + updatedAt_DESC + deletedAt_ASC + deletedAt_DESC + name_ASC + name_DESC + description_ASC + description_DESC + type_ASC + type_DESC + visibility_ASC + visibility_DESC +} + enum TerminatedLeaderEventOrderByInput { createdAt_ASC createdAt_DESC diff --git a/tests/network-tests/src/Api.ts b/tests/network-tests/src/Api.ts index c766d9463c..2fa38dab8e 100644 --- a/tests/network-tests/src/Api.ts +++ b/tests/network-tests/src/Api.ts @@ -1,5 +1,6 @@ import { ApiPromise, WsProvider, Keyring } from '@polkadot/api' import { u32, u64, u128, BTreeSet, Option, Bytes } from '@polkadot/types' +import Long from 'long' import { ISubmittableResult } from '@polkadot/types/types' import { KeyringPair } from '@polkadot/keyring/types' import { @@ -62,7 +63,21 @@ import { workingGroupNameByModuleName, } from './consts' -import { AppAction, CreateVideoCategory, IAppAction, MemberRemarked } from '@joystream/metadata-protobuf' +import { + DisallowTagToWorker, + AllowTagToWorker, + AppAction, + AssignTagsToProposal, + AssignTagsToThread, + CreateTag, + CreateVideoCategory, + IAppAction, + MemberRemarked, + RemarkMetadataAction, + UnassignTagsFromProposal, + UnassignTagsFromThread, + UpdateTag, +} from '@joystream/metadata-protobuf' import { PERBILL_ONE_PERCENT } from '../../../query-node/mappings/src/temporaryConstants' import { createType, JOYSTREAM_ADDRESS_PREFIX } from '@joystream/types' @@ -1400,4 +1415,162 @@ export class Api { public getFaucetInfo(): FaucetInfo { return this.factory.faucetInfo } + + async createNewTag( + name: string, + description: string, + type: string, + visibility: boolean + ): Promise { + const [workerId, worker] = await this.getLeader('forumWorkingGroup') + const memberController = await this.getControllerAccountOfMember(worker.memberId) + + if (!workerId) { + throw new Error('invalid Worker id') + } + + const meta = new RemarkMetadataAction({ + createTag: new CreateTag({ + name, + description, + type, + visibility, + }), + }) + + return this.sender.signAndSend( + this.api.tx.forumWorkingGroup.leadRemark(Utils.metadataToBytes(RemarkMetadataAction, meta)), + memberController + ) + } + + async updateTag( + tagId: string, + name: string, + description: string, + type: string, + visibility: boolean + ): Promise { + const [workerId, worker] = await this.getLeader('forumWorkingGroup') + const memberController = await this.getControllerAccountOfMember(worker.memberId) + + if (!workerId) { + throw new Error('invalid Worker id') + } + + const meta = new RemarkMetadataAction({ + updateTag: new UpdateTag({ + tagId, + name, + description, + type, + visibility, + }), + }) + + return this.sender.signAndSend( + this.api.tx.forumWorkingGroup.leadRemark(Utils.metadataToBytes(RemarkMetadataAction, meta)), + memberController + ) + } + + async assignTagsToThread(tagId: string, threadId: string) { + const [, worker] = await this.getLeader('forumWorkingGroup') + const memberController = await this.getControllerAccountOfMember(worker.memberId) + + const meta = new RemarkMetadataAction({ + assignTagsToThread: new AssignTagsToThread({ + tagIds: [tagId], + threadId, + }), + }) + + return this.sender.signAndSend( + this.api.tx.forumWorkingGroup.leadRemark(Utils.metadataToBytes(RemarkMetadataAction, meta)), + memberController + ) + } + + async unassignTagsFromThread(tagId: string, threadId: string) { + const [, worker] = await this.getLeader('forumWorkingGroup') + const memberController = await this.getControllerAccountOfMember(worker.memberId) + + const meta = new RemarkMetadataAction({ + unassignTagsFromThread: new UnassignTagsFromThread({ + tagIds: [tagId], + threadId, + }), + }) + + return this.sender.signAndSend( + this.api.tx.forumWorkingGroup.leadRemark(Utils.metadataToBytes(RemarkMetadataAction, meta)), + memberController + ) + } + + async assignTagsToProposal(tagId: string, proposalId: string) { + const [, worker] = await this.getLeader('forumWorkingGroup') + const memberController = await this.getControllerAccountOfMember(worker.memberId) + + const meta = new RemarkMetadataAction({ + assignTagsToProposal: new AssignTagsToProposal({ + tagIds: [tagId], + proposalId, + }), + }) + + return this.sender.signAndSend( + this.api.tx.forumWorkingGroup.leadRemark(Utils.metadataToBytes(RemarkMetadataAction, meta)), + memberController + ) + } + + async unassignTagsFromProposal(tagId: string, proposalId: string) { + const [, worker] = await this.getLeader('forumWorkingGroup') + const memberController = await this.getControllerAccountOfMember(worker.memberId) + + const meta = new RemarkMetadataAction({ + unassignTagsFromProposal: new UnassignTagsFromProposal({ + tagIds: [tagId], + proposalId, + }), + }) + + return this.sender.signAndSend( + this.api.tx.forumWorkingGroup.leadRemark(Utils.metadataToBytes(RemarkMetadataAction, meta)), + memberController + ) + } + + async allowTagToWorker(tagId: string, workerId: number) { + const [, worker] = await this.getLeader('forumWorkingGroup') + const memberController = await this.getControllerAccountOfMember(worker.memberId) + + const meta = new RemarkMetadataAction({ + allowTagToWorker: new AllowTagToWorker({ + workerId: Long.fromNumber(workerId), + }), + }) + + return this.sender.signAndSend( + this.api.tx.forumWorkingGroup.leadRemark(Utils.metadataToBytes(RemarkMetadataAction, meta)), + memberController + ) + } + + async disallowTagToWorker(tagId: string, workerId: number) { + const [, worker] = await this.getLeader('forumWorkingGroup') + const memberController = await this.getControllerAccountOfMember(worker.memberId) + + const meta = new RemarkMetadataAction({ + disallowTagToWorker: new DisallowTagToWorker({ + workerId: Long.fromNumber(workerId), + }), + }) + + return this.sender.signAndSend( + this.api.tx.forumWorkingGroup.leadRemark(Utils.metadataToBytes(RemarkMetadataAction, meta)), + memberController + ) + } } diff --git a/tests/network-tests/src/graphql/queries/tag.graphql b/tests/network-tests/src/graphql/queries/tag.graphql new file mode 100644 index 0000000000..ae7c3b6709 --- /dev/null +++ b/tests/network-tests/src/graphql/queries/tag.graphql @@ -0,0 +1,19 @@ +fragment TagFields on Tag { + id + name + description + type + visibility + forumThreads { + id + } + proposals { + id + } +} + +query getAllTags { + tags { + ...TagFields + } +}