|
@@ -408,6 +408,8 @@ export enum AuctionOrderByInput {
|
|
|
NftCreatorRoyaltyDesc = 'nft_creatorRoyalty_DESC',
|
|
|
NftIdAsc = 'nft_id_ASC',
|
|
|
NftIdDesc = 'nft_id_DESC',
|
|
|
+ NftIsFeaturedAsc = 'nft_isFeatured_ASC',
|
|
|
+ NftIsFeaturedDesc = 'nft_isFeatured_DESC',
|
|
|
NftLastSaleDateAsc = 'nft_lastSaleDate_ASC',
|
|
|
NftLastSaleDateDesc = 'nft_lastSaleDate_DESC',
|
|
|
NftLastSalePriceAsc = 'nft_lastSalePrice_ASC',
|
|
@@ -741,6 +743,8 @@ export enum BannedMemberOrderByInput {
|
|
|
ChannelCreatedAtDesc = 'channel_createdAt_DESC',
|
|
|
ChannelCreatedInBlockAsc = 'channel_createdInBlock_ASC',
|
|
|
ChannelCreatedInBlockDesc = 'channel_createdInBlock_DESC',
|
|
|
+ ChannelCumulativeRewardClaimedAsc = 'channel_cumulativeRewardClaimed_ASC',
|
|
|
+ ChannelCumulativeRewardClaimedDesc = 'channel_cumulativeRewardClaimed_DESC',
|
|
|
ChannelDescriptionAsc = 'channel_description_ASC',
|
|
|
ChannelDescriptionDesc = 'channel_description_DESC',
|
|
|
ChannelFollowsNumAsc = 'channel_followsNum_ASC',
|
|
@@ -875,6 +879,8 @@ export enum BidOrderByInput {
|
|
|
NftCreatorRoyaltyDesc = 'nft_creatorRoyalty_DESC',
|
|
|
NftIdAsc = 'nft_id_ASC',
|
|
|
NftIdDesc = 'nft_id_DESC',
|
|
|
+ NftIsFeaturedAsc = 'nft_isFeatured_ASC',
|
|
|
+ NftIsFeaturedDesc = 'nft_isFeatured_DESC',
|
|
|
NftLastSaleDateAsc = 'nft_lastSaleDate_ASC',
|
|
|
NftLastSaleDateDesc = 'nft_lastSaleDate_DESC',
|
|
|
NftLastSalePriceAsc = 'nft_lastSalePrice_ASC',
|
|
@@ -988,6 +994,7 @@ export type Channel = {
|
|
|
coverPhoto?: Maybe<StorageDataObject>
|
|
|
createdAt: Scalars['DateTime']
|
|
|
createdInBlock: Scalars['Int']
|
|
|
+ cumulativeRewardClaimed?: Maybe<Scalars['BigInt']>
|
|
|
description?: Maybe<Scalars['String']>
|
|
|
entryApp?: Maybe<App>
|
|
|
followsNum: Scalars['Int']
|
|
@@ -1124,6 +1131,13 @@ export type ChannelFollowsConnection = {
|
|
|
totalCount: Scalars['Int']
|
|
|
}
|
|
|
|
|
|
+export type ChannelFundsWithdrawnEventData = {
|
|
|
+ account?: Maybe<Scalars['String']>
|
|
|
+ actor: ContentActor
|
|
|
+ amount: Scalars['BigInt']
|
|
|
+ channel: Channel
|
|
|
+}
|
|
|
+
|
|
|
export type ChannelNftCollector = {
|
|
|
amount: Scalars['Int']
|
|
|
member: Membership
|
|
@@ -1143,8 +1157,6 @@ export enum ChannelOrderByInput {
|
|
|
AvatarPhotoIpfsHashDesc = 'avatarPhoto_ipfsHash_DESC',
|
|
|
AvatarPhotoIsAcceptedAsc = 'avatarPhoto_isAccepted_ASC',
|
|
|
AvatarPhotoIsAcceptedDesc = 'avatarPhoto_isAccepted_DESC',
|
|
|
- AvatarPhotoResolvedUrlAsc = 'avatarPhoto_resolvedUrl_ASC',
|
|
|
- AvatarPhotoResolvedUrlDesc = 'avatarPhoto_resolvedUrl_DESC',
|
|
|
AvatarPhotoSizeAsc = 'avatarPhoto_size_ASC',
|
|
|
AvatarPhotoSizeDesc = 'avatarPhoto_size_DESC',
|
|
|
AvatarPhotoStateBloatBondAsc = 'avatarPhoto_stateBloatBond_ASC',
|
|
@@ -1161,8 +1173,6 @@ export enum ChannelOrderByInput {
|
|
|
CoverPhotoIpfsHashDesc = 'coverPhoto_ipfsHash_DESC',
|
|
|
CoverPhotoIsAcceptedAsc = 'coverPhoto_isAccepted_ASC',
|
|
|
CoverPhotoIsAcceptedDesc = 'coverPhoto_isAccepted_DESC',
|
|
|
- CoverPhotoResolvedUrlAsc = 'coverPhoto_resolvedUrl_ASC',
|
|
|
- CoverPhotoResolvedUrlDesc = 'coverPhoto_resolvedUrl_DESC',
|
|
|
CoverPhotoSizeAsc = 'coverPhoto_size_ASC',
|
|
|
CoverPhotoSizeDesc = 'coverPhoto_size_DESC',
|
|
|
CoverPhotoStateBloatBondAsc = 'coverPhoto_stateBloatBond_ASC',
|
|
@@ -1173,6 +1183,8 @@ export enum ChannelOrderByInput {
|
|
|
CreatedAtDesc = 'createdAt_DESC',
|
|
|
CreatedInBlockAsc = 'createdInBlock_ASC',
|
|
|
CreatedInBlockDesc = 'createdInBlock_DESC',
|
|
|
+ CumulativeRewardClaimedAsc = 'cumulativeRewardClaimed_ASC',
|
|
|
+ CumulativeRewardClaimedDesc = 'cumulativeRewardClaimed_DESC',
|
|
|
DescriptionAsc = 'description_ASC',
|
|
|
DescriptionDesc = 'description_DESC',
|
|
|
EntryAppAuthKeyAsc = 'entryApp_authKey_ASC',
|
|
@@ -1231,6 +1243,22 @@ export enum ChannelOrderByInput {
|
|
|
VideoViewsNumDesc = 'videoViewsNum_DESC',
|
|
|
}
|
|
|
|
|
|
+export type ChannelPaymentMadeEventData = {
|
|
|
+ amount: Scalars['BigInt']
|
|
|
+ payeeChannel?: Maybe<Channel>
|
|
|
+ payer: Membership
|
|
|
+ paymentContext?: Maybe<PaymentContext>
|
|
|
+ rationale?: Maybe<Scalars['String']>
|
|
|
+}
|
|
|
+
|
|
|
+export type ChannelPayoutsUpdatedEventData = {
|
|
|
+ channelCashoutsEnabled?: Maybe<Scalars['Boolean']>
|
|
|
+ commitment?: Maybe<Scalars['String']>
|
|
|
+ maxCashoutAllowed?: Maybe<Scalars['BigInt']>
|
|
|
+ minCashoutAllowed?: Maybe<Scalars['BigInt']>
|
|
|
+ payloadDataObject?: Maybe<StorageDataObject>
|
|
|
+}
|
|
|
+
|
|
|
export type ChannelReportInfo = {
|
|
|
channelId: Scalars['String']
|
|
|
created: Scalars['Boolean']
|
|
@@ -1240,6 +1268,18 @@ export type ChannelReportInfo = {
|
|
|
reporterIp: Scalars['String']
|
|
|
}
|
|
|
|
|
|
+export type ChannelRewardClaimedAndWithdrawnEventData = {
|
|
|
+ account?: Maybe<Scalars['String']>
|
|
|
+ actor: ContentActor
|
|
|
+ amount: Scalars['BigInt']
|
|
|
+ channel: Channel
|
|
|
+}
|
|
|
+
|
|
|
+export type ChannelRewardClaimedEventData = {
|
|
|
+ amount: Scalars['BigInt']
|
|
|
+ channel: Channel
|
|
|
+}
|
|
|
+
|
|
|
export type ChannelUnfollowResult = {
|
|
|
channelId: Scalars['String']
|
|
|
follows: Scalars['Int']
|
|
@@ -1283,6 +1323,15 @@ export type ChannelWhereInput = {
|
|
|
createdInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
createdInBlock_not_eq?: Maybe<Scalars['Int']>
|
|
|
createdInBlock_not_in?: Maybe<Array<Scalars['Int']>>
|
|
|
+ cumulativeRewardClaimed_eq?: Maybe<Scalars['BigInt']>
|
|
|
+ cumulativeRewardClaimed_gt?: Maybe<Scalars['BigInt']>
|
|
|
+ cumulativeRewardClaimed_gte?: Maybe<Scalars['BigInt']>
|
|
|
+ cumulativeRewardClaimed_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
+ cumulativeRewardClaimed_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ cumulativeRewardClaimed_lt?: Maybe<Scalars['BigInt']>
|
|
|
+ cumulativeRewardClaimed_lte?: Maybe<Scalars['BigInt']>
|
|
|
+ cumulativeRewardClaimed_not_eq?: Maybe<Scalars['BigInt']>
|
|
|
+ cumulativeRewardClaimed_not_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
description_contains?: Maybe<Scalars['String']>
|
|
|
description_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
description_endsWith?: Maybe<Scalars['String']>
|
|
@@ -1946,6 +1995,7 @@ export type CuratorsConnection = {
|
|
|
export type DataObjectType =
|
|
|
| DataObjectTypeChannelAvatar
|
|
|
| DataObjectTypeChannelCoverPhoto
|
|
|
+ | DataObjectTypeChannelPayoutsPayload
|
|
|
| DataObjectTypeVideoMedia
|
|
|
| DataObjectTypeVideoSubtitle
|
|
|
| DataObjectTypeVideoThumbnail
|
|
@@ -1958,6 +2008,10 @@ export type DataObjectTypeChannelCoverPhoto = {
|
|
|
channel: Channel
|
|
|
}
|
|
|
|
|
|
+export type DataObjectTypeChannelPayoutsPayload = {
|
|
|
+ phantom?: Maybe<Scalars['Int']>
|
|
|
+}
|
|
|
+
|
|
|
export type DataObjectTypeVideoMedia = {
|
|
|
video: Video
|
|
|
}
|
|
@@ -1991,6 +2045,15 @@ export type DataObjectTypeWhereInput = {
|
|
|
isTypeOf_not_in?: Maybe<Array<Scalars['String']>>
|
|
|
isTypeOf_not_startsWith?: Maybe<Scalars['String']>
|
|
|
isTypeOf_startsWith?: Maybe<Scalars['String']>
|
|
|
+ phantom_eq?: Maybe<Scalars['Int']>
|
|
|
+ phantom_gt?: Maybe<Scalars['Int']>
|
|
|
+ phantom_gte?: Maybe<Scalars['Int']>
|
|
|
+ phantom_in?: Maybe<Array<Scalars['Int']>>
|
|
|
+ phantom_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ phantom_lt?: Maybe<Scalars['Int']>
|
|
|
+ phantom_lte?: Maybe<Scalars['Int']>
|
|
|
+ phantom_not_eq?: Maybe<Scalars['Int']>
|
|
|
+ phantom_not_in?: Maybe<Array<Scalars['Int']>>
|
|
|
subtitle?: Maybe<VideoSubtitleWhereInput>
|
|
|
subtitle_isNull?: Maybe<Scalars['Boolean']>
|
|
|
video?: Maybe<VideoWhereInput>
|
|
@@ -2524,6 +2587,11 @@ export type EventData =
|
|
|
| BidMadeCompletingAuctionEventData
|
|
|
| BuyNowCanceledEventData
|
|
|
| BuyNowPriceUpdatedEventData
|
|
|
+ | ChannelFundsWithdrawnEventData
|
|
|
+ | ChannelPaymentMadeEventData
|
|
|
+ | ChannelPayoutsUpdatedEventData
|
|
|
+ | ChannelRewardClaimedAndWithdrawnEventData
|
|
|
+ | ChannelRewardClaimedEventData
|
|
|
| CommentCreatedEventData
|
|
|
| CommentTextUpdatedEventData
|
|
|
| EnglishAuctionSettledEventData
|
|
@@ -2537,11 +2605,37 @@ export type EventData =
|
|
|
| OpenAuctionStartedEventData
|
|
|
|
|
|
export type EventDataWhereInput = {
|
|
|
+ account_contains?: Maybe<Scalars['String']>
|
|
|
+ account_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
+ account_endsWith?: Maybe<Scalars['String']>
|
|
|
+ account_eq?: Maybe<Scalars['String']>
|
|
|
+ account_gt?: Maybe<Scalars['String']>
|
|
|
+ account_gte?: Maybe<Scalars['String']>
|
|
|
+ account_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ account_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ account_lt?: Maybe<Scalars['String']>
|
|
|
+ account_lte?: Maybe<Scalars['String']>
|
|
|
+ account_not_contains?: Maybe<Scalars['String']>
|
|
|
+ account_not_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
+ account_not_endsWith?: Maybe<Scalars['String']>
|
|
|
+ account_not_eq?: Maybe<Scalars['String']>
|
|
|
+ account_not_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ account_not_startsWith?: Maybe<Scalars['String']>
|
|
|
+ account_startsWith?: Maybe<Scalars['String']>
|
|
|
action_eq?: Maybe<Scalars['Boolean']>
|
|
|
action_isNull?: Maybe<Scalars['Boolean']>
|
|
|
action_not_eq?: Maybe<Scalars['Boolean']>
|
|
|
actor?: Maybe<ContentActorWhereInput>
|
|
|
actor_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ amount_eq?: Maybe<Scalars['BigInt']>
|
|
|
+ amount_gt?: Maybe<Scalars['BigInt']>
|
|
|
+ amount_gte?: Maybe<Scalars['BigInt']>
|
|
|
+ amount_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
+ amount_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ amount_lt?: Maybe<Scalars['BigInt']>
|
|
|
+ amount_lte?: Maybe<Scalars['BigInt']>
|
|
|
+ amount_not_eq?: Maybe<Scalars['BigInt']>
|
|
|
+ amount_not_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
auction?: Maybe<AuctionWhereInput>
|
|
|
auction_isNull?: Maybe<Scalars['Boolean']>
|
|
|
bid?: Maybe<BidWhereInput>
|
|
@@ -2549,9 +2643,29 @@ export type EventDataWhereInput = {
|
|
|
buyer?: Maybe<MembershipWhereInput>
|
|
|
buyer_isNull?: Maybe<Scalars['Boolean']>
|
|
|
channel?: Maybe<ChannelWhereInput>
|
|
|
+ channelCashoutsEnabled_eq?: Maybe<Scalars['Boolean']>
|
|
|
+ channelCashoutsEnabled_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ channelCashoutsEnabled_not_eq?: Maybe<Scalars['Boolean']>
|
|
|
channel_isNull?: Maybe<Scalars['Boolean']>
|
|
|
comment?: Maybe<CommentWhereInput>
|
|
|
comment_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ commitment_contains?: Maybe<Scalars['String']>
|
|
|
+ commitment_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
+ commitment_endsWith?: Maybe<Scalars['String']>
|
|
|
+ commitment_eq?: Maybe<Scalars['String']>
|
|
|
+ commitment_gt?: Maybe<Scalars['String']>
|
|
|
+ commitment_gte?: Maybe<Scalars['String']>
|
|
|
+ commitment_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ commitment_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ commitment_lt?: Maybe<Scalars['String']>
|
|
|
+ commitment_lte?: Maybe<Scalars['String']>
|
|
|
+ commitment_not_contains?: Maybe<Scalars['String']>
|
|
|
+ commitment_not_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
+ commitment_not_endsWith?: Maybe<Scalars['String']>
|
|
|
+ commitment_not_eq?: Maybe<Scalars['String']>
|
|
|
+ commitment_not_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ commitment_not_startsWith?: Maybe<Scalars['String']>
|
|
|
+ commitment_startsWith?: Maybe<Scalars['String']>
|
|
|
isTypeOf_contains?: Maybe<Scalars['String']>
|
|
|
isTypeOf_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
isTypeOf_endsWith?: Maybe<Scalars['String']>
|
|
@@ -2569,8 +2683,26 @@ export type EventDataWhereInput = {
|
|
|
isTypeOf_not_in?: Maybe<Array<Scalars['String']>>
|
|
|
isTypeOf_not_startsWith?: Maybe<Scalars['String']>
|
|
|
isTypeOf_startsWith?: Maybe<Scalars['String']>
|
|
|
+ maxCashoutAllowed_eq?: Maybe<Scalars['BigInt']>
|
|
|
+ maxCashoutAllowed_gt?: Maybe<Scalars['BigInt']>
|
|
|
+ maxCashoutAllowed_gte?: Maybe<Scalars['BigInt']>
|
|
|
+ maxCashoutAllowed_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
+ maxCashoutAllowed_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ maxCashoutAllowed_lt?: Maybe<Scalars['BigInt']>
|
|
|
+ maxCashoutAllowed_lte?: Maybe<Scalars['BigInt']>
|
|
|
+ maxCashoutAllowed_not_eq?: Maybe<Scalars['BigInt']>
|
|
|
+ maxCashoutAllowed_not_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
member?: Maybe<MembershipWhereInput>
|
|
|
member_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ minCashoutAllowed_eq?: Maybe<Scalars['BigInt']>
|
|
|
+ minCashoutAllowed_gt?: Maybe<Scalars['BigInt']>
|
|
|
+ minCashoutAllowed_gte?: Maybe<Scalars['BigInt']>
|
|
|
+ minCashoutAllowed_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
+ minCashoutAllowed_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ minCashoutAllowed_lt?: Maybe<Scalars['BigInt']>
|
|
|
+ minCashoutAllowed_lte?: Maybe<Scalars['BigInt']>
|
|
|
+ minCashoutAllowed_not_eq?: Maybe<Scalars['BigInt']>
|
|
|
+ minCashoutAllowed_not_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
newPrice_eq?: Maybe<Scalars['BigInt']>
|
|
|
newPrice_gt?: Maybe<Scalars['BigInt']>
|
|
|
newPrice_gte?: Maybe<Scalars['BigInt']>
|
|
@@ -2601,6 +2733,14 @@ export type EventDataWhereInput = {
|
|
|
nftOwner?: Maybe<NftOwnerWhereInput>
|
|
|
nftOwner_isNull?: Maybe<Scalars['Boolean']>
|
|
|
nft_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ payeeChannel?: Maybe<ChannelWhereInput>
|
|
|
+ payeeChannel_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ payer?: Maybe<MembershipWhereInput>
|
|
|
+ payer_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ payloadDataObject?: Maybe<StorageDataObjectWhereInput>
|
|
|
+ payloadDataObject_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ paymentContext?: Maybe<PaymentContextWhereInput>
|
|
|
+ paymentContext_isNull?: Maybe<Scalars['Boolean']>
|
|
|
previousNftOwner?: Maybe<NftOwnerWhereInput>
|
|
|
previousNftOwner_isNull?: Maybe<Scalars['Boolean']>
|
|
|
price_eq?: Maybe<Scalars['BigInt']>
|
|
@@ -2612,6 +2752,23 @@ export type EventDataWhereInput = {
|
|
|
price_lte?: Maybe<Scalars['BigInt']>
|
|
|
price_not_eq?: Maybe<Scalars['BigInt']>
|
|
|
price_not_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
+ rationale_contains?: Maybe<Scalars['String']>
|
|
|
+ rationale_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
+ rationale_endsWith?: Maybe<Scalars['String']>
|
|
|
+ rationale_eq?: Maybe<Scalars['String']>
|
|
|
+ rationale_gt?: Maybe<Scalars['String']>
|
|
|
+ rationale_gte?: Maybe<Scalars['String']>
|
|
|
+ rationale_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ rationale_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ rationale_lt?: Maybe<Scalars['String']>
|
|
|
+ rationale_lte?: Maybe<Scalars['String']>
|
|
|
+ rationale_not_contains?: Maybe<Scalars['String']>
|
|
|
+ rationale_not_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
+ rationale_not_endsWith?: Maybe<Scalars['String']>
|
|
|
+ rationale_not_eq?: Maybe<Scalars['String']>
|
|
|
+ rationale_not_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ rationale_not_startsWith?: Maybe<Scalars['String']>
|
|
|
+ rationale_startsWith?: Maybe<Scalars['String']>
|
|
|
result?: Maybe<MetaprotocolTransactionResultWhereInput>
|
|
|
result_isNull?: Maybe<Scalars['Boolean']>
|
|
|
text_contains?: Maybe<Scalars['String']>
|
|
@@ -2641,16 +2798,30 @@ export type EventEdge = {
|
|
|
}
|
|
|
|
|
|
export enum EventOrderByInput {
|
|
|
+ DataAccountAsc = 'data_account_ASC',
|
|
|
+ DataAccountDesc = 'data_account_DESC',
|
|
|
DataActionAsc = 'data_action_ASC',
|
|
|
DataActionDesc = 'data_action_DESC',
|
|
|
+ DataAmountAsc = 'data_amount_ASC',
|
|
|
+ DataAmountDesc = 'data_amount_DESC',
|
|
|
+ DataChannelCashoutsEnabledAsc = 'data_channelCashoutsEnabled_ASC',
|
|
|
+ DataChannelCashoutsEnabledDesc = 'data_channelCashoutsEnabled_DESC',
|
|
|
+ DataCommitmentAsc = 'data_commitment_ASC',
|
|
|
+ DataCommitmentDesc = 'data_commitment_DESC',
|
|
|
DataIsTypeOfAsc = 'data_isTypeOf_ASC',
|
|
|
DataIsTypeOfDesc = 'data_isTypeOf_DESC',
|
|
|
+ DataMaxCashoutAllowedAsc = 'data_maxCashoutAllowed_ASC',
|
|
|
+ DataMaxCashoutAllowedDesc = 'data_maxCashoutAllowed_DESC',
|
|
|
+ DataMinCashoutAllowedAsc = 'data_minCashoutAllowed_ASC',
|
|
|
+ DataMinCashoutAllowedDesc = 'data_minCashoutAllowed_DESC',
|
|
|
DataNewPriceAsc = 'data_newPrice_ASC',
|
|
|
DataNewPriceDesc = 'data_newPrice_DESC',
|
|
|
DataNewTextAsc = 'data_newText_ASC',
|
|
|
DataNewTextDesc = 'data_newText_DESC',
|
|
|
DataPriceAsc = 'data_price_ASC',
|
|
|
DataPriceDesc = 'data_price_DESC',
|
|
|
+ DataRationaleAsc = 'data_rationale_ASC',
|
|
|
+ DataRationaleDesc = 'data_rationale_DESC',
|
|
|
DataTextAsc = 'data_text_ASC',
|
|
|
DataTextDesc = 'data_text_DESC',
|
|
|
IdAsc = 'id_ASC',
|
|
@@ -3171,6 +3342,7 @@ export type MembershipsConnection = {
|
|
|
}
|
|
|
|
|
|
export type MetaprotocolTransactionResult =
|
|
|
+ | MetaprotocolTransactionResultChannelPaid
|
|
|
| MetaprotocolTransactionResultCommentCreated
|
|
|
| MetaprotocolTransactionResultCommentDeleted
|
|
|
| MetaprotocolTransactionResultCommentEdited
|
|
@@ -3178,6 +3350,10 @@ export type MetaprotocolTransactionResult =
|
|
|
| MetaprotocolTransactionResultFailed
|
|
|
| MetaprotocolTransactionResultOk
|
|
|
|
|
|
+export type MetaprotocolTransactionResultChannelPaid = {
|
|
|
+ channelPaid?: Maybe<Channel>
|
|
|
+}
|
|
|
+
|
|
|
export type MetaprotocolTransactionResultCommentCreated = {
|
|
|
commentCreated?: Maybe<Comment>
|
|
|
}
|
|
@@ -3203,6 +3379,8 @@ export type MetaprotocolTransactionResultOk = {
|
|
|
}
|
|
|
|
|
|
export type MetaprotocolTransactionResultWhereInput = {
|
|
|
+ channelPaid?: Maybe<ChannelWhereInput>
|
|
|
+ channelPaid_isNull?: Maybe<Scalars['Boolean']>
|
|
|
commentCreated?: Maybe<CommentWhereInput>
|
|
|
commentCreated_isNull?: Maybe<Scalars['Boolean']>
|
|
|
commentDeleted?: Maybe<CommentWhereInput>
|
|
@@ -3266,8 +3444,10 @@ export type Mutation = {
|
|
|
followChannel: ChannelFollowResult
|
|
|
reportChannel: ChannelReportInfo
|
|
|
reportVideo: VideoReportInfo
|
|
|
+ requestNftFeatured: NftFeaturedRequstInfo
|
|
|
restoreContent: RestoreContentResult
|
|
|
setCategoryFeaturedVideos: SetCategoryFeaturedVideosResult
|
|
|
+ setFeaturedNfts: SetFeaturedNftsResult
|
|
|
setKillSwitch: KillSwitch
|
|
|
setSupportedCategories: SetSupportedCategoriesResult
|
|
|
setVideoHero: SetVideoHeroResult
|
|
@@ -3299,6 +3479,11 @@ export type MutationReportVideoArgs = {
|
|
|
videoId: Scalars['String']
|
|
|
}
|
|
|
|
|
|
+export type MutationRequestNftFeaturedArgs = {
|
|
|
+ nftId: Scalars['String']
|
|
|
+ rationale: Scalars['String']
|
|
|
+}
|
|
|
+
|
|
|
export type MutationRestoreContentArgs = {
|
|
|
ids: Array<Scalars['String']>
|
|
|
type: ExcludableContentType
|
|
@@ -3309,6 +3494,10 @@ export type MutationSetCategoryFeaturedVideosArgs = {
|
|
|
videos: Array<FeaturedVideoInput>
|
|
|
}
|
|
|
|
|
|
+export type MutationSetFeaturedNftsArgs = {
|
|
|
+ featuredNftsIds: Array<Scalars['String']>
|
|
|
+}
|
|
|
+
|
|
|
export type MutationSetKillSwitchArgs = {
|
|
|
isKilled: Scalars['Boolean']
|
|
|
}
|
|
@@ -3418,6 +3607,129 @@ export type NftBoughtEventData = {
|
|
|
price: Scalars['BigInt']
|
|
|
}
|
|
|
|
|
|
+export type NftFeaturedRequstInfo = {
|
|
|
+ created: Scalars['Boolean']
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
+ id: Scalars['String']
|
|
|
+ nftId: Scalars['String']
|
|
|
+ rationale: Scalars['String']
|
|
|
+ reporterIp: Scalars['String']
|
|
|
+}
|
|
|
+
|
|
|
+export type NftFeaturingRequest = {
|
|
|
+ id: Scalars['String']
|
|
|
+ ip: Scalars['String']
|
|
|
+ nftId: Scalars['String']
|
|
|
+ rationale: Scalars['String']
|
|
|
+ timestamp: Scalars['DateTime']
|
|
|
+}
|
|
|
+
|
|
|
+export type NftFeaturingRequestEdge = {
|
|
|
+ cursor: Scalars['String']
|
|
|
+ node: NftFeaturingRequest
|
|
|
+}
|
|
|
+
|
|
|
+export enum NftFeaturingRequestOrderByInput {
|
|
|
+ IdAsc = 'id_ASC',
|
|
|
+ IdDesc = 'id_DESC',
|
|
|
+ IpAsc = 'ip_ASC',
|
|
|
+ IpDesc = 'ip_DESC',
|
|
|
+ NftIdAsc = 'nftId_ASC',
|
|
|
+ NftIdDesc = 'nftId_DESC',
|
|
|
+ RationaleAsc = 'rationale_ASC',
|
|
|
+ RationaleDesc = 'rationale_DESC',
|
|
|
+ TimestampAsc = 'timestamp_ASC',
|
|
|
+ TimestampDesc = 'timestamp_DESC',
|
|
|
+}
|
|
|
+
|
|
|
+export type NftFeaturingRequestWhereInput = {
|
|
|
+ AND?: Maybe<Array<NftFeaturingRequestWhereInput>>
|
|
|
+ OR?: Maybe<Array<NftFeaturingRequestWhereInput>>
|
|
|
+ id_contains?: Maybe<Scalars['String']>
|
|
|
+ id_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
+ id_endsWith?: Maybe<Scalars['String']>
|
|
|
+ id_eq?: Maybe<Scalars['String']>
|
|
|
+ id_gt?: Maybe<Scalars['String']>
|
|
|
+ id_gte?: Maybe<Scalars['String']>
|
|
|
+ id_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ id_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ id_lt?: Maybe<Scalars['String']>
|
|
|
+ id_lte?: Maybe<Scalars['String']>
|
|
|
+ id_not_contains?: Maybe<Scalars['String']>
|
|
|
+ id_not_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
+ id_not_endsWith?: Maybe<Scalars['String']>
|
|
|
+ id_not_eq?: Maybe<Scalars['String']>
|
|
|
+ id_not_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ id_not_startsWith?: Maybe<Scalars['String']>
|
|
|
+ id_startsWith?: Maybe<Scalars['String']>
|
|
|
+ ip_contains?: Maybe<Scalars['String']>
|
|
|
+ ip_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
+ ip_endsWith?: Maybe<Scalars['String']>
|
|
|
+ ip_eq?: Maybe<Scalars['String']>
|
|
|
+ ip_gt?: Maybe<Scalars['String']>
|
|
|
+ ip_gte?: Maybe<Scalars['String']>
|
|
|
+ ip_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ ip_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ ip_lt?: Maybe<Scalars['String']>
|
|
|
+ ip_lte?: Maybe<Scalars['String']>
|
|
|
+ ip_not_contains?: Maybe<Scalars['String']>
|
|
|
+ ip_not_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
+ ip_not_endsWith?: Maybe<Scalars['String']>
|
|
|
+ ip_not_eq?: Maybe<Scalars['String']>
|
|
|
+ ip_not_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ ip_not_startsWith?: Maybe<Scalars['String']>
|
|
|
+ ip_startsWith?: Maybe<Scalars['String']>
|
|
|
+ nftId_contains?: Maybe<Scalars['String']>
|
|
|
+ nftId_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
+ nftId_endsWith?: Maybe<Scalars['String']>
|
|
|
+ nftId_eq?: Maybe<Scalars['String']>
|
|
|
+ nftId_gt?: Maybe<Scalars['String']>
|
|
|
+ nftId_gte?: Maybe<Scalars['String']>
|
|
|
+ nftId_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ nftId_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ nftId_lt?: Maybe<Scalars['String']>
|
|
|
+ nftId_lte?: Maybe<Scalars['String']>
|
|
|
+ nftId_not_contains?: Maybe<Scalars['String']>
|
|
|
+ nftId_not_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
+ nftId_not_endsWith?: Maybe<Scalars['String']>
|
|
|
+ nftId_not_eq?: Maybe<Scalars['String']>
|
|
|
+ nftId_not_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ nftId_not_startsWith?: Maybe<Scalars['String']>
|
|
|
+ nftId_startsWith?: Maybe<Scalars['String']>
|
|
|
+ rationale_contains?: Maybe<Scalars['String']>
|
|
|
+ rationale_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
+ rationale_endsWith?: Maybe<Scalars['String']>
|
|
|
+ rationale_eq?: Maybe<Scalars['String']>
|
|
|
+ rationale_gt?: Maybe<Scalars['String']>
|
|
|
+ rationale_gte?: Maybe<Scalars['String']>
|
|
|
+ rationale_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ rationale_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ rationale_lt?: Maybe<Scalars['String']>
|
|
|
+ rationale_lte?: Maybe<Scalars['String']>
|
|
|
+ rationale_not_contains?: Maybe<Scalars['String']>
|
|
|
+ rationale_not_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
+ rationale_not_endsWith?: Maybe<Scalars['String']>
|
|
|
+ rationale_not_eq?: Maybe<Scalars['String']>
|
|
|
+ rationale_not_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ rationale_not_startsWith?: Maybe<Scalars['String']>
|
|
|
+ rationale_startsWith?: Maybe<Scalars['String']>
|
|
|
+ timestamp_eq?: Maybe<Scalars['DateTime']>
|
|
|
+ timestamp_gt?: Maybe<Scalars['DateTime']>
|
|
|
+ timestamp_gte?: Maybe<Scalars['DateTime']>
|
|
|
+ timestamp_in?: Maybe<Array<Scalars['DateTime']>>
|
|
|
+ timestamp_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ timestamp_lt?: Maybe<Scalars['DateTime']>
|
|
|
+ timestamp_lte?: Maybe<Scalars['DateTime']>
|
|
|
+ timestamp_not_eq?: Maybe<Scalars['DateTime']>
|
|
|
+ timestamp_not_in?: Maybe<Array<Scalars['DateTime']>>
|
|
|
+}
|
|
|
+
|
|
|
+export type NftFeaturingRequestsConnection = {
|
|
|
+ edges: Array<NftFeaturingRequestEdge>
|
|
|
+ pageInfo: PageInfo
|
|
|
+ totalCount: Scalars['Int']
|
|
|
+}
|
|
|
+
|
|
|
export type NftHistoryEntriesConnection = {
|
|
|
edges: Array<NftHistoryEntryEdge>
|
|
|
pageInfo: PageInfo
|
|
@@ -3454,6 +3766,8 @@ export enum NftHistoryEntryOrderByInput {
|
|
|
NftCreatorRoyaltyDesc = 'nft_creatorRoyalty_DESC',
|
|
|
NftIdAsc = 'nft_id_ASC',
|
|
|
NftIdDesc = 'nft_id_DESC',
|
|
|
+ NftIsFeaturedAsc = 'nft_isFeatured_ASC',
|
|
|
+ NftIsFeaturedDesc = 'nft_isFeatured_DESC',
|
|
|
NftLastSaleDateAsc = 'nft_lastSaleDate_ASC',
|
|
|
NftLastSaleDateDesc = 'nft_lastSaleDate_DESC',
|
|
|
NftLastSalePriceAsc = 'nft_lastSalePrice_ASC',
|
|
@@ -3664,6 +3978,7 @@ export type OwnedNft = {
|
|
|
createdAt: Scalars['DateTime']
|
|
|
creatorRoyalty?: Maybe<Scalars['Float']>
|
|
|
id: Scalars['String']
|
|
|
+ isFeatured: Scalars['Boolean']
|
|
|
lastSaleDate?: Maybe<Scalars['DateTime']>
|
|
|
lastSalePrice?: Maybe<Scalars['BigInt']>
|
|
|
owner: NftOwner
|
|
@@ -3697,6 +4012,8 @@ export enum OwnedNftOrderByInput {
|
|
|
CreatorRoyaltyDesc = 'creatorRoyalty_DESC',
|
|
|
IdAsc = 'id_ASC',
|
|
|
IdDesc = 'id_DESC',
|
|
|
+ IsFeaturedAsc = 'isFeatured_ASC',
|
|
|
+ IsFeaturedDesc = 'isFeatured_DESC',
|
|
|
LastSaleDateAsc = 'lastSaleDate_ASC',
|
|
|
LastSaleDateDesc = 'lastSaleDate_DESC',
|
|
|
LastSalePriceAsc = 'lastSalePrice_ASC',
|
|
@@ -3795,6 +4112,9 @@ export type OwnedNftWhereInput = {
|
|
|
id_not_in?: Maybe<Array<Scalars['String']>>
|
|
|
id_not_startsWith?: Maybe<Scalars['String']>
|
|
|
id_startsWith?: Maybe<Scalars['String']>
|
|
|
+ isFeatured_eq?: Maybe<Scalars['Boolean']>
|
|
|
+ isFeatured_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ isFeatured_not_eq?: Maybe<Scalars['Boolean']>
|
|
|
lastSaleDate_eq?: Maybe<Scalars['DateTime']>
|
|
|
lastSaleDate_gt?: Maybe<Scalars['DateTime']>
|
|
|
lastSaleDate_gte?: Maybe<Scalars['DateTime']>
|
|
@@ -3834,6 +4154,40 @@ export type PageInfo = {
|
|
|
startCursor: Scalars['String']
|
|
|
}
|
|
|
|
|
|
+export type PaymentContext = PaymentContextChannel | PaymentContextVideo
|
|
|
+
|
|
|
+export type PaymentContextChannel = {
|
|
|
+ channel: Channel
|
|
|
+}
|
|
|
+
|
|
|
+export type PaymentContextVideo = {
|
|
|
+ video: Video
|
|
|
+}
|
|
|
+
|
|
|
+export type PaymentContextWhereInput = {
|
|
|
+ channel?: Maybe<ChannelWhereInput>
|
|
|
+ channel_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ isTypeOf_contains?: Maybe<Scalars['String']>
|
|
|
+ isTypeOf_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
+ isTypeOf_endsWith?: Maybe<Scalars['String']>
|
|
|
+ isTypeOf_eq?: Maybe<Scalars['String']>
|
|
|
+ isTypeOf_gt?: Maybe<Scalars['String']>
|
|
|
+ isTypeOf_gte?: Maybe<Scalars['String']>
|
|
|
+ isTypeOf_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ isTypeOf_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+ isTypeOf_lt?: Maybe<Scalars['String']>
|
|
|
+ isTypeOf_lte?: Maybe<Scalars['String']>
|
|
|
+ isTypeOf_not_contains?: Maybe<Scalars['String']>
|
|
|
+ isTypeOf_not_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
+ isTypeOf_not_endsWith?: Maybe<Scalars['String']>
|
|
|
+ isTypeOf_not_eq?: Maybe<Scalars['String']>
|
|
|
+ isTypeOf_not_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ isTypeOf_not_startsWith?: Maybe<Scalars['String']>
|
|
|
+ isTypeOf_startsWith?: Maybe<Scalars['String']>
|
|
|
+ video?: Maybe<VideoWhereInput>
|
|
|
+ video_isNull?: Maybe<Scalars['Boolean']>
|
|
|
+}
|
|
|
+
|
|
|
export type ProcessorState = {
|
|
|
lastProcessedBlock: Scalars['Int']
|
|
|
}
|
|
@@ -3956,6 +4310,11 @@ export type Query = {
|
|
|
nftActivityById?: Maybe<NftActivity>
|
|
|
/** @deprecated Use nftActivityById */
|
|
|
nftActivityByUniqueInput?: Maybe<NftActivity>
|
|
|
+ nftFeaturingRequestById?: Maybe<NftFeaturingRequest>
|
|
|
+ /** @deprecated Use nftFeaturingRequestById */
|
|
|
+ nftFeaturingRequestByUniqueInput?: Maybe<NftFeaturingRequest>
|
|
|
+ nftFeaturingRequests: Array<NftFeaturingRequest>
|
|
|
+ nftFeaturingRequestsConnection: NftFeaturingRequestsConnection
|
|
|
nftHistoryEntries: Array<NftHistoryEntry>
|
|
|
nftHistoryEntriesConnection: NftHistoryEntriesConnection
|
|
|
nftHistoryEntryById?: Maybe<NftHistoryEntry>
|
|
@@ -4562,6 +4921,28 @@ export type QueryNftActivityByUniqueInputArgs = {
|
|
|
where: WhereIdInput
|
|
|
}
|
|
|
|
|
|
+export type QueryNftFeaturingRequestByIdArgs = {
|
|
|
+ id: Scalars['String']
|
|
|
+}
|
|
|
+
|
|
|
+export type QueryNftFeaturingRequestByUniqueInputArgs = {
|
|
|
+ where: WhereIdInput
|
|
|
+}
|
|
|
+
|
|
|
+export type QueryNftFeaturingRequestsArgs = {
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
+ orderBy?: Maybe<Array<NftFeaturingRequestOrderByInput>>
|
|
|
+ where?: Maybe<NftFeaturingRequestWhereInput>
|
|
|
+}
|
|
|
+
|
|
|
+export type QueryNftFeaturingRequestsConnectionArgs = {
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
+ orderBy: Array<NftFeaturingRequestOrderByInput>
|
|
|
+ where?: Maybe<NftFeaturingRequestWhereInput>
|
|
|
+}
|
|
|
+
|
|
|
export type QueryNftHistoryEntriesArgs = {
|
|
|
limit?: Maybe<Scalars['Int']>
|
|
|
offset?: Maybe<Scalars['Int']>
|
|
@@ -4959,7 +5340,7 @@ export type QueryVideosConnectionArgs = {
|
|
|
}
|
|
|
|
|
|
export type Report = {
|
|
|
- channelId: Scalars['String']
|
|
|
+ channelId?: Maybe<Scalars['String']>
|
|
|
id: Scalars['String']
|
|
|
ip: Scalars['String']
|
|
|
rationale: Scalars['String']
|
|
@@ -5102,6 +5483,10 @@ export type SetCategoryFeaturedVideosResult = {
|
|
|
numberOfFeaturedVideosUnset: Scalars['Int']
|
|
|
}
|
|
|
|
|
|
+export type SetFeaturedNftsResult = {
|
|
|
+ newNumberOfNftsFeatured?: Maybe<Scalars['Int']>
|
|
|
+}
|
|
|
+
|
|
|
export type SetSupportedCategoriesResult = {
|
|
|
newNumberOfCategoriesSupported?: Maybe<Scalars['Int']>
|
|
|
newlyCreatedCategoriesSupported: Scalars['Boolean']
|
|
@@ -5693,7 +6078,7 @@ export type StorageDataObject = {
|
|
|
id: Scalars['String']
|
|
|
ipfsHash: Scalars['String']
|
|
|
isAccepted: Scalars['Boolean']
|
|
|
- resolvedUrl?: Maybe<Scalars['String']>
|
|
|
+ resolvedUrls: Array<Scalars['String']>
|
|
|
size: Scalars['BigInt']
|
|
|
stateBloatBond: Scalars['BigInt']
|
|
|
storageBag: StorageBag
|
|
@@ -5715,8 +6100,6 @@ export enum StorageDataObjectOrderByInput {
|
|
|
IpfsHashDesc = 'ipfsHash_DESC',
|
|
|
IsAcceptedAsc = 'isAccepted_ASC',
|
|
|
IsAcceptedDesc = 'isAccepted_DESC',
|
|
|
- ResolvedUrlAsc = 'resolvedUrl_ASC',
|
|
|
- ResolvedUrlDesc = 'resolvedUrl_DESC',
|
|
|
SizeAsc = 'size_ASC',
|
|
|
SizeDesc = 'size_DESC',
|
|
|
StateBloatBondAsc = 'stateBloatBond_ASC',
|
|
@@ -5725,6 +6108,8 @@ export enum StorageDataObjectOrderByInput {
|
|
|
StorageBagIdDesc = 'storageBag_id_DESC',
|
|
|
TypeIsTypeOfAsc = 'type_isTypeOf_ASC',
|
|
|
TypeIsTypeOfDesc = 'type_isTypeOf_DESC',
|
|
|
+ TypePhantomAsc = 'type_phantom_ASC',
|
|
|
+ TypePhantomDesc = 'type_phantom_DESC',
|
|
|
UnsetAtAsc = 'unsetAt_ASC',
|
|
|
UnsetAtDesc = 'unsetAt_DESC',
|
|
|
}
|
|
@@ -5778,23 +6163,10 @@ export type StorageDataObjectWhereInput = {
|
|
|
isAccepted_eq?: Maybe<Scalars['Boolean']>
|
|
|
isAccepted_isNull?: Maybe<Scalars['Boolean']>
|
|
|
isAccepted_not_eq?: Maybe<Scalars['Boolean']>
|
|
|
- resolvedUrl_contains?: Maybe<Scalars['String']>
|
|
|
- resolvedUrl_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
- resolvedUrl_endsWith?: Maybe<Scalars['String']>
|
|
|
- resolvedUrl_eq?: Maybe<Scalars['String']>
|
|
|
- resolvedUrl_gt?: Maybe<Scalars['String']>
|
|
|
- resolvedUrl_gte?: Maybe<Scalars['String']>
|
|
|
- resolvedUrl_in?: Maybe<Array<Scalars['String']>>
|
|
|
- resolvedUrl_isNull?: Maybe<Scalars['Boolean']>
|
|
|
- resolvedUrl_lt?: Maybe<Scalars['String']>
|
|
|
- resolvedUrl_lte?: Maybe<Scalars['String']>
|
|
|
- resolvedUrl_not_contains?: Maybe<Scalars['String']>
|
|
|
- resolvedUrl_not_containsInsensitive?: Maybe<Scalars['String']>
|
|
|
- resolvedUrl_not_endsWith?: Maybe<Scalars['String']>
|
|
|
- resolvedUrl_not_eq?: Maybe<Scalars['String']>
|
|
|
- resolvedUrl_not_in?: Maybe<Array<Scalars['String']>>
|
|
|
- resolvedUrl_not_startsWith?: Maybe<Scalars['String']>
|
|
|
- resolvedUrl_startsWith?: Maybe<Scalars['String']>
|
|
|
+ resolvedUrls_containsAll?: Maybe<Array<Scalars['String']>>
|
|
|
+ resolvedUrls_containsAny?: Maybe<Array<Scalars['String']>>
|
|
|
+ resolvedUrls_containsNone?: Maybe<Array<Scalars['String']>>
|
|
|
+ resolvedUrls_isNull?: Maybe<Scalars['Boolean']>
|
|
|
size_eq?: Maybe<Scalars['BigInt']>
|
|
|
size_gt?: Maybe<Scalars['BigInt']>
|
|
|
size_gte?: Maybe<Scalars['BigInt']>
|
|
@@ -5879,6 +6251,8 @@ export type Subscription = {
|
|
|
memberships: Array<Membership>
|
|
|
nftActivities: Array<NftActivity>
|
|
|
nftActivityById?: Maybe<NftActivity>
|
|
|
+ nftFeaturingRequestById?: Maybe<NftFeaturingRequest>
|
|
|
+ nftFeaturingRequests: Array<NftFeaturingRequest>
|
|
|
nftHistoryEntries: Array<NftHistoryEntry>
|
|
|
nftHistoryEntryById?: Maybe<NftHistoryEntry>
|
|
|
notificationById?: Maybe<Notification>
|
|
@@ -6160,6 +6534,17 @@ export type SubscriptionNftActivityByIdArgs = {
|
|
|
id: Scalars['String']
|
|
|
}
|
|
|
|
|
|
+export type SubscriptionNftFeaturingRequestByIdArgs = {
|
|
|
+ id: Scalars['String']
|
|
|
+}
|
|
|
+
|
|
|
+export type SubscriptionNftFeaturingRequestsArgs = {
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
+ orderBy?: Maybe<Array<NftFeaturingRequestOrderByInput>>
|
|
|
+ where?: Maybe<NftFeaturingRequestWhereInput>
|
|
|
+}
|
|
|
+
|
|
|
export type SubscriptionNftHistoryEntriesArgs = {
|
|
|
limit?: Maybe<Scalars['Int']>
|
|
|
offset?: Maybe<Scalars['Int']>
|
|
@@ -7158,6 +7543,8 @@ export enum VideoOrderByInput {
|
|
|
ChannelCreatedAtDesc = 'channel_createdAt_DESC',
|
|
|
ChannelCreatedInBlockAsc = 'channel_createdInBlock_ASC',
|
|
|
ChannelCreatedInBlockDesc = 'channel_createdInBlock_DESC',
|
|
|
+ ChannelCumulativeRewardClaimedAsc = 'channel_cumulativeRewardClaimed_ASC',
|
|
|
+ ChannelCumulativeRewardClaimedDesc = 'channel_cumulativeRewardClaimed_DESC',
|
|
|
ChannelDescriptionAsc = 'channel_description_ASC',
|
|
|
ChannelDescriptionDesc = 'channel_description_DESC',
|
|
|
ChannelFollowsNumAsc = 'channel_followsNum_ASC',
|
|
@@ -7258,8 +7645,6 @@ export enum VideoOrderByInput {
|
|
|
MediaIpfsHashDesc = 'media_ipfsHash_DESC',
|
|
|
MediaIsAcceptedAsc = 'media_isAccepted_ASC',
|
|
|
MediaIsAcceptedDesc = 'media_isAccepted_DESC',
|
|
|
- MediaResolvedUrlAsc = 'media_resolvedUrl_ASC',
|
|
|
- MediaResolvedUrlDesc = 'media_resolvedUrl_DESC',
|
|
|
MediaSizeAsc = 'media_size_ASC',
|
|
|
MediaSizeDesc = 'media_size_DESC',
|
|
|
MediaStateBloatBondAsc = 'media_stateBloatBond_ASC',
|
|
@@ -7272,6 +7657,8 @@ export enum VideoOrderByInput {
|
|
|
NftCreatorRoyaltyDesc = 'nft_creatorRoyalty_DESC',
|
|
|
NftIdAsc = 'nft_id_ASC',
|
|
|
NftIdDesc = 'nft_id_DESC',
|
|
|
+ NftIsFeaturedAsc = 'nft_isFeatured_ASC',
|
|
|
+ NftIsFeaturedDesc = 'nft_isFeatured_DESC',
|
|
|
NftLastSaleDateAsc = 'nft_lastSaleDate_ASC',
|
|
|
NftLastSaleDateDesc = 'nft_lastSaleDate_DESC',
|
|
|
NftLastSalePriceAsc = 'nft_lastSalePrice_ASC',
|
|
@@ -7306,8 +7693,6 @@ export enum VideoOrderByInput {
|
|
|
ThumbnailPhotoIpfsHashDesc = 'thumbnailPhoto_ipfsHash_DESC',
|
|
|
ThumbnailPhotoIsAcceptedAsc = 'thumbnailPhoto_isAccepted_ASC',
|
|
|
ThumbnailPhotoIsAcceptedDesc = 'thumbnailPhoto_isAccepted_DESC',
|
|
|
- ThumbnailPhotoResolvedUrlAsc = 'thumbnailPhoto_resolvedUrl_ASC',
|
|
|
- ThumbnailPhotoResolvedUrlDesc = 'thumbnailPhoto_resolvedUrl_DESC',
|
|
|
ThumbnailPhotoSizeAsc = 'thumbnailPhoto_size_ASC',
|
|
|
ThumbnailPhotoSizeDesc = 'thumbnailPhoto_size_DESC',
|
|
|
ThumbnailPhotoStateBloatBondAsc = 'thumbnailPhoto_stateBloatBond_ASC',
|
|
@@ -7484,8 +7869,6 @@ export enum VideoSubtitleOrderByInput {
|
|
|
AssetIpfsHashDesc = 'asset_ipfsHash_DESC',
|
|
|
AssetIsAcceptedAsc = 'asset_isAccepted_ASC',
|
|
|
AssetIsAcceptedDesc = 'asset_isAccepted_DESC',
|
|
|
- AssetResolvedUrlAsc = 'asset_resolvedUrl_ASC',
|
|
|
- AssetResolvedUrlDesc = 'asset_resolvedUrl_DESC',
|
|
|
AssetSizeAsc = 'asset_size_ASC',
|
|
|
AssetSizeDesc = 'asset_size_DESC',
|
|
|
AssetStateBloatBondAsc = 'asset_stateBloatBond_ASC',
|