@ludo.ninja/api 2.8.8 → 2.8.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -332,11 +332,14 @@ export type ICategory = {
|
|
|
332
332
|
name: Scalars['String'];
|
|
333
333
|
};
|
|
334
334
|
export type ICollection = {
|
|
335
|
+
blockHeight?: Maybe<Scalars['Long']>;
|
|
336
|
+
blockTimestamp?: Maybe<Scalars['Long']>;
|
|
335
337
|
blockchain?: Maybe<Scalars['String']>;
|
|
336
338
|
collectionAssets?: Maybe<Array<Maybe<ICollectionAsset>>>;
|
|
337
|
-
collectionId
|
|
339
|
+
collectionId: Scalars['String'];
|
|
338
340
|
collectionMarkets?: Maybe<Array<Maybe<ICollectionMarket>>>;
|
|
339
341
|
collectionTitle?: Maybe<Scalars['String']>;
|
|
342
|
+
collectionUrl?: Maybe<Scalars['String']>;
|
|
340
343
|
contractAddress?: Maybe<Scalars['String']>;
|
|
341
344
|
creatorsAddresses?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
342
345
|
creatorsProfiles?: Maybe<Array<Maybe<IProfile>>>;
|
|
@@ -472,10 +475,10 @@ export type IDynamicAssetData = {
|
|
|
472
475
|
medias?: Maybe<Array<Maybe<IMedia>>>;
|
|
473
476
|
};
|
|
474
477
|
export type IDynamicCollectionData = {
|
|
478
|
+
collectionId: Scalars['String'];
|
|
475
479
|
isLikedByUser?: Maybe<Scalars['Boolean']>;
|
|
476
480
|
likesNum?: Maybe<Scalars['Int']>;
|
|
477
|
-
collectionAssetsPage?: Maybe<
|
|
478
|
-
collectionId?: Maybe<Scalars['String']>;
|
|
481
|
+
collectionAssetsPage?: Maybe<IAssetsPage>;
|
|
479
482
|
};
|
|
480
483
|
export type IDynamicCollectionDataInput = {
|
|
481
484
|
collectionId: Scalars['String'];
|
|
@@ -811,6 +814,7 @@ export type IMutation = {
|
|
|
811
814
|
blockUser: Scalars['Boolean'];
|
|
812
815
|
blockUsers: Scalars['Boolean'];
|
|
813
816
|
changeXpPoints: Scalars['Boolean'];
|
|
817
|
+
createAdminOpportunity: Scalars['Boolean'];
|
|
814
818
|
createBrand: Scalars['Boolean'];
|
|
815
819
|
createCategory: Scalars['Boolean'];
|
|
816
820
|
createFavoriteListV2: Scalars['ID'];
|
|
@@ -988,6 +992,10 @@ export type IMutationChangeXpPointsArgs = {
|
|
|
988
992
|
userId: Scalars['ID'];
|
|
989
993
|
pointsDiff: Scalars['Int'];
|
|
990
994
|
};
|
|
995
|
+
export type IMutationCreateAdminOpportunityArgs = {
|
|
996
|
+
input: IOpportunityInput;
|
|
997
|
+
file?: Maybe<Scalars['Upload']>;
|
|
998
|
+
};
|
|
991
999
|
export type IMutationCreateBrandArgs = {
|
|
992
1000
|
brand: IBrandInput;
|
|
993
1001
|
file?: Maybe<Scalars['Upload']>;
|
|
@@ -1026,7 +1034,6 @@ export type IMutationCreateNonceArgs = {
|
|
|
1026
1034
|
chainId?: Maybe<Scalars['String']>;
|
|
1027
1035
|
};
|
|
1028
1036
|
export type IMutationCreateOpportunityArgs = {
|
|
1029
|
-
file?: Maybe<Scalars['Upload']>;
|
|
1030
1037
|
input: IOpportunityInput;
|
|
1031
1038
|
};
|
|
1032
1039
|
export type IMutationDeleteGalleryArgs = {
|
|
@@ -1753,7 +1760,7 @@ export type IQueryFetchDynamicCollectionDataArgs = {
|
|
|
1753
1760
|
input: IDynamicCollectionDataInput;
|
|
1754
1761
|
};
|
|
1755
1762
|
export type IQueryFetchDynamicCollectionsDataArgs = {
|
|
1756
|
-
|
|
1763
|
+
inputs: Array<IDynamicCollectionDataInput>;
|
|
1757
1764
|
};
|
|
1758
1765
|
export type IQueryFetchExtensionOpportunitiesV2Args = {
|
|
1759
1766
|
domain: Scalars['String'];
|
|
@@ -2403,6 +2410,21 @@ export type IChangeXpPointsMutationVariables = Exact<{
|
|
|
2403
2410
|
pointsDiff: Scalars['Int'];
|
|
2404
2411
|
}>;
|
|
2405
2412
|
export type IChangeXpPointsMutation = Pick<IMutation, 'changeXpPoints'>;
|
|
2413
|
+
export type ICreateCategoryMutationVariables = Exact<{
|
|
2414
|
+
name: Scalars['String'];
|
|
2415
|
+
matchingWords: Array<Scalars['String']>;
|
|
2416
|
+
}>;
|
|
2417
|
+
export type ICreateCategoryMutation = Pick<IMutation, 'createCategory'>;
|
|
2418
|
+
export type ICreateBrandMutationVariables = Exact<{
|
|
2419
|
+
brand: IBrandInput;
|
|
2420
|
+
file?: Maybe<Scalars['Upload']>;
|
|
2421
|
+
}>;
|
|
2422
|
+
export type ICreateBrandMutation = Pick<IMutation, 'createBrand'>;
|
|
2423
|
+
export type ICreateAdminOpportunityMutationVariables = Exact<{
|
|
2424
|
+
file?: Maybe<Scalars['Upload']>;
|
|
2425
|
+
input: IOpportunityInput;
|
|
2426
|
+
}>;
|
|
2427
|
+
export type ICreateAdminOpportunityMutation = Pick<IMutation, 'createAdminOpportunity'>;
|
|
2406
2428
|
export type IAddInviteCodesMutationVariables = Exact<{
|
|
2407
2429
|
userId: Scalars['String'];
|
|
2408
2430
|
codesNum: Scalars['Int'];
|
|
@@ -2516,17 +2538,6 @@ export type ILikeCollectionMutationVariables = Exact<{
|
|
|
2516
2538
|
collectionId: Scalars['String'];
|
|
2517
2539
|
}>;
|
|
2518
2540
|
export type ILikeCollectionMutation = Pick<IMutation, 'likeCollection'>;
|
|
2519
|
-
export type IFetchCollectionQueryVariables = Exact<{
|
|
2520
|
-
collectionId: Scalars['String'];
|
|
2521
|
-
}>;
|
|
2522
|
-
export type IFetchCollectionQuery = {
|
|
2523
|
-
fetchCollection: (Pick<ICollection, 'collectionId' | 'blockchain' | 'identifier' | 'contractAddress' | 'tokenId' | 'collectionTitle' | 'items' | 'owners' | 'likes' | 'liked' | 'creatorsAddresses' | 'verified' | 'originalUrls' | 'rank'> & {
|
|
2524
|
-
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
2525
|
-
collectionMarkets?: Maybe<Array<Maybe<Pick<ICollectionMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
2526
|
-
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'username' | 'userpic'>>>>;
|
|
2527
|
-
floorPrices?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
2528
|
-
});
|
|
2529
|
-
};
|
|
2530
2541
|
export type IFetchCollectionsQueryVariables = Exact<{
|
|
2531
2542
|
pageSize: Scalars['Int'];
|
|
2532
2543
|
pageToken?: Maybe<Scalars['String']>;
|
|
@@ -2539,41 +2550,6 @@ export type IFetchCollectionsQuery = {
|
|
|
2539
2550
|
})>>>;
|
|
2540
2551
|
});
|
|
2541
2552
|
};
|
|
2542
|
-
export type IFetchCollectionsByIdsQueryVariables = Exact<{
|
|
2543
|
-
collectionIds: Array<Scalars['String']>;
|
|
2544
|
-
}>;
|
|
2545
|
-
export type IFetchCollectionsByIdsQuery = {
|
|
2546
|
-
fetchCollectionsByIds: Array<(Pick<ICollection, 'collectionId' | 'blockchain' | 'identifier' | 'contractAddress' | 'tokenId' | 'collectionTitle' | 'items' | 'owners' | 'likes' | 'liked' | 'creatorsAddresses' | 'verified' | 'originalUrls' | 'rank'> & {
|
|
2547
|
-
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
2548
|
-
collectionMarkets?: Maybe<Array<Maybe<Pick<ICollectionMarket, 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
2549
|
-
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'username' | 'userpic'>>>>;
|
|
2550
|
-
floorPrices?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
2551
|
-
})>;
|
|
2552
|
-
};
|
|
2553
|
-
export type IFetchDynamicCollectionDataQueryVariables = Exact<{
|
|
2554
|
-
input: IDynamicCollectionDataInput;
|
|
2555
|
-
}>;
|
|
2556
|
-
export type IFetchDynamicCollectionDataQuery = {
|
|
2557
|
-
fetchDynamicCollectionData: (Pick<IDynamicCollectionData, 'isLikedByUser' | 'likesNum' | 'collectionId'> & {
|
|
2558
|
-
collectionAssetsPage?: Maybe<(Pick<ICollectionAssetsPage, 'nextPageToken'> & {
|
|
2559
|
-
collectionAssets?: Maybe<Array<Maybe<(Pick<ICollectionAsset, 'id' | 'collectionId' | 'collectionTitle' | 'assetId' | 'blockchain' | 'address' | 'tokenId' | 'chainId' | 'creatorsAddresses' | 'originalUrls' | 'name' | 'description' | 'likes' | 'liked' | 'views' | 'visible' | 'createdAt' | 'blurred' | 'rank'> & {
|
|
2560
|
-
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
2561
|
-
})>>>;
|
|
2562
|
-
})>;
|
|
2563
|
-
});
|
|
2564
|
-
};
|
|
2565
|
-
export type IFetchDynamicCollectionsDataQueryVariables = Exact<{
|
|
2566
|
-
input: Array<IDynamicCollectionDataInput>;
|
|
2567
|
-
}>;
|
|
2568
|
-
export type IFetchDynamicCollectionsDataQuery = {
|
|
2569
|
-
fetchDynamicCollectionsData: Array<(Pick<IDynamicCollectionData, 'isLikedByUser' | 'likesNum' | 'collectionId'> & {
|
|
2570
|
-
collectionAssetsPage?: Maybe<(Pick<ICollectionAssetsPage, 'nextPageToken'> & {
|
|
2571
|
-
collectionAssets?: Maybe<Array<Maybe<(Pick<ICollectionAsset, 'id' | 'collectionId' | 'collectionTitle' | 'assetId' | 'blockchain' | 'address' | 'tokenId' | 'chainId' | 'creatorsAddresses' | 'originalUrls' | 'name' | 'description' | 'likes' | 'liked' | 'views' | 'visible' | 'createdAt' | 'blurred' | 'rank'> & {
|
|
2572
|
-
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
2573
|
-
})>>>;
|
|
2574
|
-
})>;
|
|
2575
|
-
})>;
|
|
2576
|
-
};
|
|
2577
2553
|
export type IFetchMyExperienceV2QueryVariables = Exact<{
|
|
2578
2554
|
[key: string]: never;
|
|
2579
2555
|
}>;
|
|
@@ -3216,6 +3192,18 @@ export type IFetchAssetsCountQueryVariables = Exact<{
|
|
|
3216
3192
|
[key: string]: never;
|
|
3217
3193
|
}>;
|
|
3218
3194
|
export type IFetchAssetsCountQuery = Pick<IQuery, 'fetchAssetsCount'>;
|
|
3195
|
+
export type IFetchCollectionQueryVariables = Exact<{
|
|
3196
|
+
collectionId: Scalars['String'];
|
|
3197
|
+
}>;
|
|
3198
|
+
export type IFetchCollectionQuery = {
|
|
3199
|
+
fetchCollection: (Pick<ICollection, 'collectionId' | 'blockchain' | 'identifier' | 'contractAddress' | 'tokenId' | 'blockHeight' | 'blockTimestamp' | 'collectionTitle' | 'collectionUrl' | 'items' | 'owners' | 'likes' | 'liked' | 'creatorsAddresses' | 'verified' | 'originalUrls' | 'rank' | 'nsfw'> & {
|
|
3200
|
+
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3201
|
+
collectionMarkets?: Maybe<Array<Maybe<Pick<ICollectionMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
3202
|
+
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'username' | 'userpic'>>>>;
|
|
3203
|
+
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
3204
|
+
floorPrices?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3205
|
+
});
|
|
3206
|
+
};
|
|
3219
3207
|
export type IFindCollectionsQueryVariables = Exact<{
|
|
3220
3208
|
term: Scalars['String'];
|
|
3221
3209
|
input: ICollectionFilterInput;
|
|
@@ -3229,6 +3217,18 @@ export type IFindCollectionsQuery = {
|
|
|
3229
3217
|
nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements'>>;
|
|
3230
3218
|
};
|
|
3231
3219
|
};
|
|
3220
|
+
export type IFetchCollectionsByIdsQueryVariables = Exact<{
|
|
3221
|
+
collectionIds: Array<Scalars['String']>;
|
|
3222
|
+
}>;
|
|
3223
|
+
export type IFetchCollectionsByIdsQuery = {
|
|
3224
|
+
fetchCollectionsByIds: Array<(Pick<ICollection, 'collectionId' | 'blockchain' | 'identifier' | 'contractAddress' | 'tokenId' | 'blockHeight' | 'blockTimestamp' | 'collectionTitle' | 'collectionUrl' | 'items' | 'owners' | 'likes' | 'liked' | 'creatorsAddresses' | 'verified' | 'originalUrls' | 'rank' | 'nsfw'> & {
|
|
3225
|
+
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3226
|
+
collectionMarkets?: Maybe<Array<Maybe<Pick<ICollectionMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
3227
|
+
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'username' | 'userpic'>>>>;
|
|
3228
|
+
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
3229
|
+
floorPrices?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3230
|
+
})>;
|
|
3231
|
+
};
|
|
3232
3232
|
export type IFetchCreationsByTypeQueryVariables = Exact<{
|
|
3233
3233
|
itemType: Scalars['String'];
|
|
3234
3234
|
page?: Maybe<IPageInput>;
|
|
@@ -3251,6 +3251,42 @@ export type IFetchDynamicAssetsLikesQueryVariables = Exact<{
|
|
|
3251
3251
|
export type IFetchDynamicAssetsLikesQuery = {
|
|
3252
3252
|
fetchDynamicAssetsData: Array<Maybe<Pick<IDynamicAssetData, 'isLikedByUser' | 'likesNum' | 'assetId'>>>;
|
|
3253
3253
|
};
|
|
3254
|
+
export type IFetchDynamicCollectionDataQueryVariables = Exact<{
|
|
3255
|
+
input: IDynamicCollectionDataInput;
|
|
3256
|
+
}>;
|
|
3257
|
+
export type IFetchDynamicCollectionDataQuery = {
|
|
3258
|
+
fetchDynamicCollectionData: (Pick<IDynamicCollectionData, 'isLikedByUser' | 'likesNum' | 'collectionId'> & {
|
|
3259
|
+
collectionAssetsPage?: Maybe<(Pick<IAssetsPage, 'nextPageToken'> & {
|
|
3260
|
+
assets: Array<Maybe<(Pick<IAsset, 'latestPriceCurrency' | 'latestPriceAmount' | 'collectionId' | 'collectionOriginalUrls' | 'collectionTitle' | 'assetId' | 'blockchain' | 'address' | 'tokenId' | 'name' | 'description' | 'rank' | 'originalUrls' | 'ownersAddresses' | 'creatorsAddresses' | 'views' | 'visible' | 'blurred'> & {
|
|
3261
|
+
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3262
|
+
markets?: Maybe<Array<Maybe<Pick<IAssetMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
3263
|
+
collectionMedias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
3264
|
+
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'mimeType' | 'sizeRatio' | 'fileSize' | 'previewUrl'>>>>;
|
|
3265
|
+
ownersProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
3266
|
+
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
3267
|
+
attributes?: Maybe<Array<Maybe<Pick<IAttribute, 'name' | 'value'>>>>;
|
|
3268
|
+
})>>;
|
|
3269
|
+
})>;
|
|
3270
|
+
});
|
|
3271
|
+
};
|
|
3272
|
+
export type IFetchDynamicCollectionsDataQueryVariables = Exact<{
|
|
3273
|
+
input: Array<IDynamicCollectionDataInput>;
|
|
3274
|
+
}>;
|
|
3275
|
+
export type IFetchDynamicCollectionsDataQuery = {
|
|
3276
|
+
fetchDynamicCollectionsData: Array<(Pick<IDynamicCollectionData, 'isLikedByUser' | 'likesNum' | 'collectionId'> & {
|
|
3277
|
+
collectionAssetsPage?: Maybe<(Pick<IAssetsPage, 'nextPageToken'> & {
|
|
3278
|
+
assets: Array<Maybe<(Pick<IAsset, 'latestPriceCurrency' | 'latestPriceAmount' | 'collectionId' | 'collectionOriginalUrls' | 'collectionTitle' | 'assetId' | 'blockchain' | 'address' | 'tokenId' | 'name' | 'description' | 'rank' | 'originalUrls' | 'ownersAddresses' | 'creatorsAddresses' | 'views' | 'visible' | 'blurred'> & {
|
|
3279
|
+
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3280
|
+
markets?: Maybe<Array<Maybe<Pick<IAssetMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
3281
|
+
collectionMedias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
3282
|
+
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'mimeType' | 'sizeRatio' | 'fileSize' | 'previewUrl'>>>>;
|
|
3283
|
+
ownersProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
3284
|
+
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
3285
|
+
attributes?: Maybe<Array<Maybe<Pick<IAttribute, 'name' | 'value'>>>>;
|
|
3286
|
+
})>>;
|
|
3287
|
+
})>;
|
|
3288
|
+
})>;
|
|
3289
|
+
};
|
|
3254
3290
|
export type IFindAllTopEntitiesByNameQueryVariables = Exact<{
|
|
3255
3291
|
name: Scalars['String'];
|
|
3256
3292
|
pageSize: Scalars['Int'];
|
|
@@ -3368,6 +3404,87 @@ export declare function useChangeXpPointsMutation(baseOptions?: Apollo.MutationH
|
|
|
3368
3404
|
export type ChangeXpPointsMutationHookResult = ReturnType<typeof useChangeXpPointsMutation>;
|
|
3369
3405
|
export type ChangeXpPointsMutationResult = Apollo.MutationResult<IChangeXpPointsMutation>;
|
|
3370
3406
|
export type ChangeXpPointsMutationOptions = Apollo.BaseMutationOptions<IChangeXpPointsMutation, IChangeXpPointsMutationVariables>;
|
|
3407
|
+
export declare const CreateCategoryDocument: Apollo.DocumentNode;
|
|
3408
|
+
export type ICreateCategoryMutationFn = Apollo.MutationFunction<ICreateCategoryMutation, ICreateCategoryMutationVariables>;
|
|
3409
|
+
/**
|
|
3410
|
+
* __useCreateCategoryMutation__
|
|
3411
|
+
*
|
|
3412
|
+
* To run a mutation, you first call `useCreateCategoryMutation` within a React component and pass it any options that fit your needs.
|
|
3413
|
+
* When your component renders, `useCreateCategoryMutation` returns a tuple that includes:
|
|
3414
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
3415
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
3416
|
+
*
|
|
3417
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
3418
|
+
*
|
|
3419
|
+
* @example
|
|
3420
|
+
* const [createCategoryMutation, { data, loading, error }] = useCreateCategoryMutation({
|
|
3421
|
+
* variables: {
|
|
3422
|
+
* name: // value for 'name'
|
|
3423
|
+
* matchingWords: // value for 'matchingWords'
|
|
3424
|
+
* },
|
|
3425
|
+
* });
|
|
3426
|
+
*/
|
|
3427
|
+
export declare function useCreateCategoryMutation(baseOptions?: Apollo.MutationHookOptions<ICreateCategoryMutation, ICreateCategoryMutationVariables>): Apollo.MutationTuple<ICreateCategoryMutation, Exact<{
|
|
3428
|
+
name: string;
|
|
3429
|
+
matchingWords: string[];
|
|
3430
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
3431
|
+
export type CreateCategoryMutationHookResult = ReturnType<typeof useCreateCategoryMutation>;
|
|
3432
|
+
export type CreateCategoryMutationResult = Apollo.MutationResult<ICreateCategoryMutation>;
|
|
3433
|
+
export type CreateCategoryMutationOptions = Apollo.BaseMutationOptions<ICreateCategoryMutation, ICreateCategoryMutationVariables>;
|
|
3434
|
+
export declare const CreateBrandDocument: Apollo.DocumentNode;
|
|
3435
|
+
export type ICreateBrandMutationFn = Apollo.MutationFunction<ICreateBrandMutation, ICreateBrandMutationVariables>;
|
|
3436
|
+
/**
|
|
3437
|
+
* __useCreateBrandMutation__
|
|
3438
|
+
*
|
|
3439
|
+
* To run a mutation, you first call `useCreateBrandMutation` within a React component and pass it any options that fit your needs.
|
|
3440
|
+
* When your component renders, `useCreateBrandMutation` returns a tuple that includes:
|
|
3441
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
3442
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
3443
|
+
*
|
|
3444
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
3445
|
+
*
|
|
3446
|
+
* @example
|
|
3447
|
+
* const [createBrandMutation, { data, loading, error }] = useCreateBrandMutation({
|
|
3448
|
+
* variables: {
|
|
3449
|
+
* brand: // value for 'brand'
|
|
3450
|
+
* file: // value for 'file'
|
|
3451
|
+
* },
|
|
3452
|
+
* });
|
|
3453
|
+
*/
|
|
3454
|
+
export declare function useCreateBrandMutation(baseOptions?: Apollo.MutationHookOptions<ICreateBrandMutation, ICreateBrandMutationVariables>): Apollo.MutationTuple<ICreateBrandMutation, Exact<{
|
|
3455
|
+
brand: IBrandInput;
|
|
3456
|
+
file?: any;
|
|
3457
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
3458
|
+
export type CreateBrandMutationHookResult = ReturnType<typeof useCreateBrandMutation>;
|
|
3459
|
+
export type CreateBrandMutationResult = Apollo.MutationResult<ICreateBrandMutation>;
|
|
3460
|
+
export type CreateBrandMutationOptions = Apollo.BaseMutationOptions<ICreateBrandMutation, ICreateBrandMutationVariables>;
|
|
3461
|
+
export declare const CreateAdminOpportunityDocument: Apollo.DocumentNode;
|
|
3462
|
+
export type ICreateAdminOpportunityMutationFn = Apollo.MutationFunction<ICreateAdminOpportunityMutation, ICreateAdminOpportunityMutationVariables>;
|
|
3463
|
+
/**
|
|
3464
|
+
* __useCreateAdminOpportunityMutation__
|
|
3465
|
+
*
|
|
3466
|
+
* To run a mutation, you first call `useCreateAdminOpportunityMutation` within a React component and pass it any options that fit your needs.
|
|
3467
|
+
* When your component renders, `useCreateAdminOpportunityMutation` returns a tuple that includes:
|
|
3468
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
3469
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
3470
|
+
*
|
|
3471
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
3472
|
+
*
|
|
3473
|
+
* @example
|
|
3474
|
+
* const [createAdminOpportunityMutation, { data, loading, error }] = useCreateAdminOpportunityMutation({
|
|
3475
|
+
* variables: {
|
|
3476
|
+
* file: // value for 'file'
|
|
3477
|
+
* input: // value for 'input'
|
|
3478
|
+
* },
|
|
3479
|
+
* });
|
|
3480
|
+
*/
|
|
3481
|
+
export declare function useCreateAdminOpportunityMutation(baseOptions?: Apollo.MutationHookOptions<ICreateAdminOpportunityMutation, ICreateAdminOpportunityMutationVariables>): Apollo.MutationTuple<ICreateAdminOpportunityMutation, Exact<{
|
|
3482
|
+
file?: any;
|
|
3483
|
+
input: IOpportunityInput;
|
|
3484
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
3485
|
+
export type CreateAdminOpportunityMutationHookResult = ReturnType<typeof useCreateAdminOpportunityMutation>;
|
|
3486
|
+
export type CreateAdminOpportunityMutationResult = Apollo.MutationResult<ICreateAdminOpportunityMutation>;
|
|
3487
|
+
export type CreateAdminOpportunityMutationOptions = Apollo.BaseMutationOptions<ICreateAdminOpportunityMutation, ICreateAdminOpportunityMutationVariables>;
|
|
3371
3488
|
export declare const AddInviteCodesDocument: Apollo.DocumentNode;
|
|
3372
3489
|
export type IAddInviteCodesMutationFn = Apollo.MutationFunction<IAddInviteCodesMutation, IAddInviteCodesMutationVariables>;
|
|
3373
3490
|
/**
|
|
@@ -3759,32 +3876,6 @@ export declare function useLikeCollectionMutation(baseOptions?: Apollo.MutationH
|
|
|
3759
3876
|
export type LikeCollectionMutationHookResult = ReturnType<typeof useLikeCollectionMutation>;
|
|
3760
3877
|
export type LikeCollectionMutationResult = Apollo.MutationResult<ILikeCollectionMutation>;
|
|
3761
3878
|
export type LikeCollectionMutationOptions = Apollo.BaseMutationOptions<ILikeCollectionMutation, ILikeCollectionMutationVariables>;
|
|
3762
|
-
export declare const FetchCollectionDocument: Apollo.DocumentNode;
|
|
3763
|
-
/**
|
|
3764
|
-
* __useFetchCollectionQuery__
|
|
3765
|
-
*
|
|
3766
|
-
* To run a query within a React component, call `useFetchCollectionQuery` and pass it any options that fit your needs.
|
|
3767
|
-
* When your component renders, `useFetchCollectionQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3768
|
-
* you can use to render your UI.
|
|
3769
|
-
*
|
|
3770
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3771
|
-
*
|
|
3772
|
-
* @example
|
|
3773
|
-
* const { data, loading, error } = useFetchCollectionQuery({
|
|
3774
|
-
* variables: {
|
|
3775
|
-
* collectionId: // value for 'collectionId'
|
|
3776
|
-
* },
|
|
3777
|
-
* });
|
|
3778
|
-
*/
|
|
3779
|
-
export declare function useFetchCollectionQuery(baseOptions: Apollo.QueryHookOptions<IFetchCollectionQuery, IFetchCollectionQueryVariables>): Apollo.QueryResult<IFetchCollectionQuery, Exact<{
|
|
3780
|
-
collectionId: string;
|
|
3781
|
-
}>>;
|
|
3782
|
-
export declare function useFetchCollectionLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchCollectionQuery, IFetchCollectionQueryVariables>): Apollo.LazyQueryResultTuple<IFetchCollectionQuery, Exact<{
|
|
3783
|
-
collectionId: string;
|
|
3784
|
-
}>>;
|
|
3785
|
-
export type FetchCollectionQueryHookResult = ReturnType<typeof useFetchCollectionQuery>;
|
|
3786
|
-
export type FetchCollectionLazyQueryHookResult = ReturnType<typeof useFetchCollectionLazyQuery>;
|
|
3787
|
-
export type FetchCollectionQueryResult = Apollo.QueryResult<IFetchCollectionQuery, IFetchCollectionQueryVariables>;
|
|
3788
3879
|
export declare const FetchCollectionsDocument: Apollo.DocumentNode;
|
|
3789
3880
|
/**
|
|
3790
3881
|
* __useFetchCollectionsQuery__
|
|
@@ -3817,84 +3908,6 @@ export declare function useFetchCollectionsLazyQuery(baseOptions?: Apollo.LazyQu
|
|
|
3817
3908
|
export type FetchCollectionsQueryHookResult = ReturnType<typeof useFetchCollectionsQuery>;
|
|
3818
3909
|
export type FetchCollectionsLazyQueryHookResult = ReturnType<typeof useFetchCollectionsLazyQuery>;
|
|
3819
3910
|
export type FetchCollectionsQueryResult = Apollo.QueryResult<IFetchCollectionsQuery, IFetchCollectionsQueryVariables>;
|
|
3820
|
-
export declare const FetchCollectionsByIdsDocument: Apollo.DocumentNode;
|
|
3821
|
-
/**
|
|
3822
|
-
* __useFetchCollectionsByIdsQuery__
|
|
3823
|
-
*
|
|
3824
|
-
* To run a query within a React component, call `useFetchCollectionsByIdsQuery` and pass it any options that fit your needs.
|
|
3825
|
-
* When your component renders, `useFetchCollectionsByIdsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3826
|
-
* you can use to render your UI.
|
|
3827
|
-
*
|
|
3828
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3829
|
-
*
|
|
3830
|
-
* @example
|
|
3831
|
-
* const { data, loading, error } = useFetchCollectionsByIdsQuery({
|
|
3832
|
-
* variables: {
|
|
3833
|
-
* collectionIds: // value for 'collectionIds'
|
|
3834
|
-
* },
|
|
3835
|
-
* });
|
|
3836
|
-
*/
|
|
3837
|
-
export declare function useFetchCollectionsByIdsQuery(baseOptions: Apollo.QueryHookOptions<IFetchCollectionsByIdsQuery, IFetchCollectionsByIdsQueryVariables>): Apollo.QueryResult<IFetchCollectionsByIdsQuery, Exact<{
|
|
3838
|
-
collectionIds: string[];
|
|
3839
|
-
}>>;
|
|
3840
|
-
export declare function useFetchCollectionsByIdsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchCollectionsByIdsQuery, IFetchCollectionsByIdsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchCollectionsByIdsQuery, Exact<{
|
|
3841
|
-
collectionIds: string[];
|
|
3842
|
-
}>>;
|
|
3843
|
-
export type FetchCollectionsByIdsQueryHookResult = ReturnType<typeof useFetchCollectionsByIdsQuery>;
|
|
3844
|
-
export type FetchCollectionsByIdsLazyQueryHookResult = ReturnType<typeof useFetchCollectionsByIdsLazyQuery>;
|
|
3845
|
-
export type FetchCollectionsByIdsQueryResult = Apollo.QueryResult<IFetchCollectionsByIdsQuery, IFetchCollectionsByIdsQueryVariables>;
|
|
3846
|
-
export declare const FetchDynamicCollectionDataDocument: Apollo.DocumentNode;
|
|
3847
|
-
/**
|
|
3848
|
-
* __useFetchDynamicCollectionDataQuery__
|
|
3849
|
-
*
|
|
3850
|
-
* To run a query within a React component, call `useFetchDynamicCollectionDataQuery` and pass it any options that fit your needs.
|
|
3851
|
-
* When your component renders, `useFetchDynamicCollectionDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3852
|
-
* you can use to render your UI.
|
|
3853
|
-
*
|
|
3854
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3855
|
-
*
|
|
3856
|
-
* @example
|
|
3857
|
-
* const { data, loading, error } = useFetchDynamicCollectionDataQuery({
|
|
3858
|
-
* variables: {
|
|
3859
|
-
* input: // value for 'input'
|
|
3860
|
-
* },
|
|
3861
|
-
* });
|
|
3862
|
-
*/
|
|
3863
|
-
export declare function useFetchDynamicCollectionDataQuery(baseOptions: Apollo.QueryHookOptions<IFetchDynamicCollectionDataQuery, IFetchDynamicCollectionDataQueryVariables>): Apollo.QueryResult<IFetchDynamicCollectionDataQuery, Exact<{
|
|
3864
|
-
input: IDynamicCollectionDataInput;
|
|
3865
|
-
}>>;
|
|
3866
|
-
export declare function useFetchDynamicCollectionDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchDynamicCollectionDataQuery, IFetchDynamicCollectionDataQueryVariables>): Apollo.LazyQueryResultTuple<IFetchDynamicCollectionDataQuery, Exact<{
|
|
3867
|
-
input: IDynamicCollectionDataInput;
|
|
3868
|
-
}>>;
|
|
3869
|
-
export type FetchDynamicCollectionDataQueryHookResult = ReturnType<typeof useFetchDynamicCollectionDataQuery>;
|
|
3870
|
-
export type FetchDynamicCollectionDataLazyQueryHookResult = ReturnType<typeof useFetchDynamicCollectionDataLazyQuery>;
|
|
3871
|
-
export type FetchDynamicCollectionDataQueryResult = Apollo.QueryResult<IFetchDynamicCollectionDataQuery, IFetchDynamicCollectionDataQueryVariables>;
|
|
3872
|
-
export declare const FetchDynamicCollectionsDataDocument: Apollo.DocumentNode;
|
|
3873
|
-
/**
|
|
3874
|
-
* __useFetchDynamicCollectionsDataQuery__
|
|
3875
|
-
*
|
|
3876
|
-
* To run a query within a React component, call `useFetchDynamicCollectionsDataQuery` and pass it any options that fit your needs.
|
|
3877
|
-
* When your component renders, `useFetchDynamicCollectionsDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3878
|
-
* you can use to render your UI.
|
|
3879
|
-
*
|
|
3880
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3881
|
-
*
|
|
3882
|
-
* @example
|
|
3883
|
-
* const { data, loading, error } = useFetchDynamicCollectionsDataQuery({
|
|
3884
|
-
* variables: {
|
|
3885
|
-
* input: // value for 'input'
|
|
3886
|
-
* },
|
|
3887
|
-
* });
|
|
3888
|
-
*/
|
|
3889
|
-
export declare function useFetchDynamicCollectionsDataQuery(baseOptions: Apollo.QueryHookOptions<IFetchDynamicCollectionsDataQuery, IFetchDynamicCollectionsDataQueryVariables>): Apollo.QueryResult<IFetchDynamicCollectionsDataQuery, Exact<{
|
|
3890
|
-
input: IDynamicCollectionDataInput[];
|
|
3891
|
-
}>>;
|
|
3892
|
-
export declare function useFetchDynamicCollectionsDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchDynamicCollectionsDataQuery, IFetchDynamicCollectionsDataQueryVariables>): Apollo.LazyQueryResultTuple<IFetchDynamicCollectionsDataQuery, Exact<{
|
|
3893
|
-
input: IDynamicCollectionDataInput[];
|
|
3894
|
-
}>>;
|
|
3895
|
-
export type FetchDynamicCollectionsDataQueryHookResult = ReturnType<typeof useFetchDynamicCollectionsDataQuery>;
|
|
3896
|
-
export type FetchDynamicCollectionsDataLazyQueryHookResult = ReturnType<typeof useFetchDynamicCollectionsDataLazyQuery>;
|
|
3897
|
-
export type FetchDynamicCollectionsDataQueryResult = Apollo.QueryResult<IFetchDynamicCollectionsDataQuery, IFetchDynamicCollectionsDataQueryVariables>;
|
|
3898
3911
|
export declare const FetchMyExperienceV2Document: Apollo.DocumentNode;
|
|
3899
3912
|
/**
|
|
3900
3913
|
* __useFetchMyExperienceV2Query__
|
|
@@ -6290,6 +6303,32 @@ export declare function useFetchAssetsCountLazyQuery(baseOptions?: Apollo.LazyQu
|
|
|
6290
6303
|
export type FetchAssetsCountQueryHookResult = ReturnType<typeof useFetchAssetsCountQuery>;
|
|
6291
6304
|
export type FetchAssetsCountLazyQueryHookResult = ReturnType<typeof useFetchAssetsCountLazyQuery>;
|
|
6292
6305
|
export type FetchAssetsCountQueryResult = Apollo.QueryResult<IFetchAssetsCountQuery, IFetchAssetsCountQueryVariables>;
|
|
6306
|
+
export declare const FetchCollectionDocument: Apollo.DocumentNode;
|
|
6307
|
+
/**
|
|
6308
|
+
* __useFetchCollectionQuery__
|
|
6309
|
+
*
|
|
6310
|
+
* To run a query within a React component, call `useFetchCollectionQuery` and pass it any options that fit your needs.
|
|
6311
|
+
* When your component renders, `useFetchCollectionQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6312
|
+
* you can use to render your UI.
|
|
6313
|
+
*
|
|
6314
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
6315
|
+
*
|
|
6316
|
+
* @example
|
|
6317
|
+
* const { data, loading, error } = useFetchCollectionQuery({
|
|
6318
|
+
* variables: {
|
|
6319
|
+
* collectionId: // value for 'collectionId'
|
|
6320
|
+
* },
|
|
6321
|
+
* });
|
|
6322
|
+
*/
|
|
6323
|
+
export declare function useFetchCollectionQuery(baseOptions: Apollo.QueryHookOptions<IFetchCollectionQuery, IFetchCollectionQueryVariables>): Apollo.QueryResult<IFetchCollectionQuery, Exact<{
|
|
6324
|
+
collectionId: string;
|
|
6325
|
+
}>>;
|
|
6326
|
+
export declare function useFetchCollectionLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchCollectionQuery, IFetchCollectionQueryVariables>): Apollo.LazyQueryResultTuple<IFetchCollectionQuery, Exact<{
|
|
6327
|
+
collectionId: string;
|
|
6328
|
+
}>>;
|
|
6329
|
+
export type FetchCollectionQueryHookResult = ReturnType<typeof useFetchCollectionQuery>;
|
|
6330
|
+
export type FetchCollectionLazyQueryHookResult = ReturnType<typeof useFetchCollectionLazyQuery>;
|
|
6331
|
+
export type FetchCollectionQueryResult = Apollo.QueryResult<IFetchCollectionQuery, IFetchCollectionQueryVariables>;
|
|
6293
6332
|
export declare const FindCollectionsDocument: Apollo.DocumentNode;
|
|
6294
6333
|
/**
|
|
6295
6334
|
* __useFindCollectionsQuery__
|
|
@@ -6322,6 +6361,32 @@ export declare function useFindCollectionsLazyQuery(baseOptions?: Apollo.LazyQue
|
|
|
6322
6361
|
export type FindCollectionsQueryHookResult = ReturnType<typeof useFindCollectionsQuery>;
|
|
6323
6362
|
export type FindCollectionsLazyQueryHookResult = ReturnType<typeof useFindCollectionsLazyQuery>;
|
|
6324
6363
|
export type FindCollectionsQueryResult = Apollo.QueryResult<IFindCollectionsQuery, IFindCollectionsQueryVariables>;
|
|
6364
|
+
export declare const FetchCollectionsByIdsDocument: Apollo.DocumentNode;
|
|
6365
|
+
/**
|
|
6366
|
+
* __useFetchCollectionsByIdsQuery__
|
|
6367
|
+
*
|
|
6368
|
+
* To run a query within a React component, call `useFetchCollectionsByIdsQuery` and pass it any options that fit your needs.
|
|
6369
|
+
* When your component renders, `useFetchCollectionsByIdsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6370
|
+
* you can use to render your UI.
|
|
6371
|
+
*
|
|
6372
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
6373
|
+
*
|
|
6374
|
+
* @example
|
|
6375
|
+
* const { data, loading, error } = useFetchCollectionsByIdsQuery({
|
|
6376
|
+
* variables: {
|
|
6377
|
+
* collectionIds: // value for 'collectionIds'
|
|
6378
|
+
* },
|
|
6379
|
+
* });
|
|
6380
|
+
*/
|
|
6381
|
+
export declare function useFetchCollectionsByIdsQuery(baseOptions: Apollo.QueryHookOptions<IFetchCollectionsByIdsQuery, IFetchCollectionsByIdsQueryVariables>): Apollo.QueryResult<IFetchCollectionsByIdsQuery, Exact<{
|
|
6382
|
+
collectionIds: string[];
|
|
6383
|
+
}>>;
|
|
6384
|
+
export declare function useFetchCollectionsByIdsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchCollectionsByIdsQuery, IFetchCollectionsByIdsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchCollectionsByIdsQuery, Exact<{
|
|
6385
|
+
collectionIds: string[];
|
|
6386
|
+
}>>;
|
|
6387
|
+
export type FetchCollectionsByIdsQueryHookResult = ReturnType<typeof useFetchCollectionsByIdsQuery>;
|
|
6388
|
+
export type FetchCollectionsByIdsLazyQueryHookResult = ReturnType<typeof useFetchCollectionsByIdsLazyQuery>;
|
|
6389
|
+
export type FetchCollectionsByIdsQueryResult = Apollo.QueryResult<IFetchCollectionsByIdsQuery, IFetchCollectionsByIdsQueryVariables>;
|
|
6325
6390
|
export declare const FetchCreationsByTypeDocument: Apollo.DocumentNode;
|
|
6326
6391
|
/**
|
|
6327
6392
|
* __useFetchCreationsByTypeQuery__
|
|
@@ -6403,6 +6468,58 @@ export declare function useFetchDynamicAssetsLikesLazyQuery(baseOptions?: Apollo
|
|
|
6403
6468
|
export type FetchDynamicAssetsLikesQueryHookResult = ReturnType<typeof useFetchDynamicAssetsLikesQuery>;
|
|
6404
6469
|
export type FetchDynamicAssetsLikesLazyQueryHookResult = ReturnType<typeof useFetchDynamicAssetsLikesLazyQuery>;
|
|
6405
6470
|
export type FetchDynamicAssetsLikesQueryResult = Apollo.QueryResult<IFetchDynamicAssetsLikesQuery, IFetchDynamicAssetsLikesQueryVariables>;
|
|
6471
|
+
export declare const FetchDynamicCollectionDataDocument: Apollo.DocumentNode;
|
|
6472
|
+
/**
|
|
6473
|
+
* __useFetchDynamicCollectionDataQuery__
|
|
6474
|
+
*
|
|
6475
|
+
* To run a query within a React component, call `useFetchDynamicCollectionDataQuery` and pass it any options that fit your needs.
|
|
6476
|
+
* When your component renders, `useFetchDynamicCollectionDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6477
|
+
* you can use to render your UI.
|
|
6478
|
+
*
|
|
6479
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
6480
|
+
*
|
|
6481
|
+
* @example
|
|
6482
|
+
* const { data, loading, error } = useFetchDynamicCollectionDataQuery({
|
|
6483
|
+
* variables: {
|
|
6484
|
+
* input: // value for 'input'
|
|
6485
|
+
* },
|
|
6486
|
+
* });
|
|
6487
|
+
*/
|
|
6488
|
+
export declare function useFetchDynamicCollectionDataQuery(baseOptions: Apollo.QueryHookOptions<IFetchDynamicCollectionDataQuery, IFetchDynamicCollectionDataQueryVariables>): Apollo.QueryResult<IFetchDynamicCollectionDataQuery, Exact<{
|
|
6489
|
+
input: IDynamicCollectionDataInput;
|
|
6490
|
+
}>>;
|
|
6491
|
+
export declare function useFetchDynamicCollectionDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchDynamicCollectionDataQuery, IFetchDynamicCollectionDataQueryVariables>): Apollo.LazyQueryResultTuple<IFetchDynamicCollectionDataQuery, Exact<{
|
|
6492
|
+
input: IDynamicCollectionDataInput;
|
|
6493
|
+
}>>;
|
|
6494
|
+
export type FetchDynamicCollectionDataQueryHookResult = ReturnType<typeof useFetchDynamicCollectionDataQuery>;
|
|
6495
|
+
export type FetchDynamicCollectionDataLazyQueryHookResult = ReturnType<typeof useFetchDynamicCollectionDataLazyQuery>;
|
|
6496
|
+
export type FetchDynamicCollectionDataQueryResult = Apollo.QueryResult<IFetchDynamicCollectionDataQuery, IFetchDynamicCollectionDataQueryVariables>;
|
|
6497
|
+
export declare const FetchDynamicCollectionsDataDocument: Apollo.DocumentNode;
|
|
6498
|
+
/**
|
|
6499
|
+
* __useFetchDynamicCollectionsDataQuery__
|
|
6500
|
+
*
|
|
6501
|
+
* To run a query within a React component, call `useFetchDynamicCollectionsDataQuery` and pass it any options that fit your needs.
|
|
6502
|
+
* When your component renders, `useFetchDynamicCollectionsDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6503
|
+
* you can use to render your UI.
|
|
6504
|
+
*
|
|
6505
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
6506
|
+
*
|
|
6507
|
+
* @example
|
|
6508
|
+
* const { data, loading, error } = useFetchDynamicCollectionsDataQuery({
|
|
6509
|
+
* variables: {
|
|
6510
|
+
* input: // value for 'input'
|
|
6511
|
+
* },
|
|
6512
|
+
* });
|
|
6513
|
+
*/
|
|
6514
|
+
export declare function useFetchDynamicCollectionsDataQuery(baseOptions: Apollo.QueryHookOptions<IFetchDynamicCollectionsDataQuery, IFetchDynamicCollectionsDataQueryVariables>): Apollo.QueryResult<IFetchDynamicCollectionsDataQuery, Exact<{
|
|
6515
|
+
input: IDynamicCollectionDataInput[];
|
|
6516
|
+
}>>;
|
|
6517
|
+
export declare function useFetchDynamicCollectionsDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchDynamicCollectionsDataQuery, IFetchDynamicCollectionsDataQueryVariables>): Apollo.LazyQueryResultTuple<IFetchDynamicCollectionsDataQuery, Exact<{
|
|
6518
|
+
input: IDynamicCollectionDataInput[];
|
|
6519
|
+
}>>;
|
|
6520
|
+
export type FetchDynamicCollectionsDataQueryHookResult = ReturnType<typeof useFetchDynamicCollectionsDataQuery>;
|
|
6521
|
+
export type FetchDynamicCollectionsDataLazyQueryHookResult = ReturnType<typeof useFetchDynamicCollectionsDataLazyQuery>;
|
|
6522
|
+
export type FetchDynamicCollectionsDataQueryResult = Apollo.QueryResult<IFetchDynamicCollectionsDataQuery, IFetchDynamicCollectionsDataQueryVariables>;
|
|
6406
6523
|
export declare const FindAllTopEntitiesByNameDocument: Apollo.DocumentNode;
|
|
6407
6524
|
/**
|
|
6408
6525
|
* __useFindAllTopEntitiesByNameQuery__
|