@ludo.ninja/api 3.2.20 → 3.2.22
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.
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.d.ts +105 -3
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.js +84 -2
- package/build/index.d.ts +17 -0
- package/package.json +1 -1
- package/src/graphql_tools/__generated__/opportunitiesHost/schema.ts +152 -3
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -19,6 +19,12 @@ export type Scalars = {
|
|
|
19
19
|
};
|
|
20
20
|
|
|
21
21
|
|
|
22
|
+
export type IAlertSubscription = {
|
|
23
|
+
userId: Scalars['String'];
|
|
24
|
+
projectId: Scalars['String'];
|
|
25
|
+
item: IProject;
|
|
26
|
+
};
|
|
27
|
+
|
|
22
28
|
export type IAlertsSubscriptionInput = {
|
|
23
29
|
blockchain: Scalars['String'];
|
|
24
30
|
contract: Scalars['String'];
|
|
@@ -398,6 +404,15 @@ export type IProject = {
|
|
|
398
404
|
mediaUrl?: Maybe<Scalars['String']>;
|
|
399
405
|
publisher?: Maybe<IPublisher>;
|
|
400
406
|
communityVoteDetails?: Maybe<Array<ICommunityVoteDetails>>;
|
|
407
|
+
shareLink?: Maybe<Scalars['String']>;
|
|
408
|
+
};
|
|
409
|
+
|
|
410
|
+
export type IProjectAlerting = {
|
|
411
|
+
userId: Scalars['String'];
|
|
412
|
+
slotsFree: Scalars['Int'];
|
|
413
|
+
slotsLimit: Scalars['Int'];
|
|
414
|
+
activeUntil: Scalars['Long'];
|
|
415
|
+
subscriptions?: Maybe<Array<IAlertSubscription>>;
|
|
401
416
|
};
|
|
402
417
|
|
|
403
418
|
export type IProjectCommunityVote = {
|
|
@@ -499,6 +514,7 @@ export type IQuery = {
|
|
|
499
514
|
fetchProjectBySlug: IProject;
|
|
500
515
|
fetchProject?: Maybe<IProject>;
|
|
501
516
|
fetchProjectMonitoring?: Maybe<IProjectMonitoring>;
|
|
517
|
+
fetchProjectAlerting?: Maybe<IProjectAlerting>;
|
|
502
518
|
fetchMonitorsCounter?: Maybe<IMonitorsCounter>;
|
|
503
519
|
};
|
|
504
520
|
|
|
@@ -647,8 +663,9 @@ export type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs
|
|
|
647
663
|
|
|
648
664
|
/** Mapping between all available schema types and the resolvers types */
|
|
649
665
|
export type IResolversTypes = {
|
|
650
|
-
|
|
666
|
+
AlertSubscription: ResolverTypeWrapper<IAlertSubscription>;
|
|
651
667
|
String: ResolverTypeWrapper<Scalars['String']>;
|
|
668
|
+
AlertsSubscriptionInput: IAlertsSubscriptionInput;
|
|
652
669
|
Brand: ResolverTypeWrapper<IBrand>;
|
|
653
670
|
ID: ResolverTypeWrapper<Scalars['ID']>;
|
|
654
671
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
|
@@ -673,6 +690,7 @@ export type IResolversTypes = {
|
|
|
673
690
|
OpportunityV2: ResolverTypeWrapper<IOpportunityV2>;
|
|
674
691
|
ProfileOpportunities: ResolverTypeWrapper<IProfileOpportunities>;
|
|
675
692
|
Project: ResolverTypeWrapper<IProject>;
|
|
693
|
+
ProjectAlerting: ResolverTypeWrapper<IProjectAlerting>;
|
|
676
694
|
ProjectCommunityVote: ResolverTypeWrapper<IProjectCommunityVote>;
|
|
677
695
|
ProjectLinkClickInput: IProjectLinkClickInput;
|
|
678
696
|
ProjectMonitoring: ResolverTypeWrapper<IProjectMonitoring>;
|
|
@@ -693,8 +711,9 @@ export type IResolversTypes = {
|
|
|
693
711
|
|
|
694
712
|
/** Mapping between all available schema types and the resolvers parents */
|
|
695
713
|
export type IResolversParentTypes = {
|
|
696
|
-
|
|
714
|
+
AlertSubscription: IAlertSubscription;
|
|
697
715
|
String: Scalars['String'];
|
|
716
|
+
AlertsSubscriptionInput: IAlertsSubscriptionInput;
|
|
698
717
|
Brand: IBrand;
|
|
699
718
|
ID: Scalars['ID'];
|
|
700
719
|
Boolean: Scalars['Boolean'];
|
|
@@ -717,6 +736,7 @@ export type IResolversParentTypes = {
|
|
|
717
736
|
OpportunityV2: IOpportunityV2;
|
|
718
737
|
ProfileOpportunities: IProfileOpportunities;
|
|
719
738
|
Project: IProject;
|
|
739
|
+
ProjectAlerting: IProjectAlerting;
|
|
720
740
|
ProjectCommunityVote: IProjectCommunityVote;
|
|
721
741
|
ProjectLinkClickInput: IProjectLinkClickInput;
|
|
722
742
|
ProjectMonitoring: IProjectMonitoring;
|
|
@@ -736,6 +756,13 @@ export type IOneOfDirectiveArgs = { };
|
|
|
736
756
|
|
|
737
757
|
export type IOneOfDirectiveResolver<Result, Parent, ContextType = any, Args = IOneOfDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
738
758
|
|
|
759
|
+
export type IAlertSubscriptionResolvers<ContextType = any, ParentType extends IResolversParentTypes['AlertSubscription'] = IResolversParentTypes['AlertSubscription']> = {
|
|
760
|
+
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
761
|
+
projectId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
762
|
+
item?: Resolver<IResolversTypes['Project'], ParentType, ContextType>;
|
|
763
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
764
|
+
};
|
|
765
|
+
|
|
739
766
|
export type IBrandResolvers<ContextType = any, ParentType extends IResolversParentTypes['Brand'] = IResolversParentTypes['Brand']> = {
|
|
740
767
|
brandId?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
741
768
|
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
@@ -956,6 +983,16 @@ export type IProjectResolvers<ContextType = any, ParentType extends IResolversPa
|
|
|
956
983
|
mediaUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
957
984
|
publisher?: Resolver<Maybe<IResolversTypes['Publisher']>, ParentType, ContextType>;
|
|
958
985
|
communityVoteDetails?: Resolver<Maybe<Array<IResolversTypes['CommunityVoteDetails']>>, ParentType, ContextType>;
|
|
986
|
+
shareLink?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
987
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
988
|
+
};
|
|
989
|
+
|
|
990
|
+
export type IProjectAlertingResolvers<ContextType = any, ParentType extends IResolversParentTypes['ProjectAlerting'] = IResolversParentTypes['ProjectAlerting']> = {
|
|
991
|
+
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
992
|
+
slotsFree?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
|
993
|
+
slotsLimit?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
|
994
|
+
activeUntil?: Resolver<IResolversTypes['Long'], ParentType, ContextType>;
|
|
995
|
+
subscriptions?: Resolver<Maybe<Array<IResolversTypes['AlertSubscription']>>, ParentType, ContextType>;
|
|
959
996
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
960
997
|
};
|
|
961
998
|
|
|
@@ -1038,6 +1075,7 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
1038
1075
|
fetchProjectBySlug?: Resolver<IResolversTypes['Project'], ParentType, ContextType, RequireFields<IQueryFetchProjectBySlugArgs, 'slug'>>;
|
|
1039
1076
|
fetchProject?: Resolver<Maybe<IResolversTypes['Project']>, ParentType, ContextType, RequireFields<IQueryFetchProjectArgs, 'blockchain' | 'contract'>>;
|
|
1040
1077
|
fetchProjectMonitoring?: Resolver<Maybe<IResolversTypes['ProjectMonitoring']>, ParentType, ContextType>;
|
|
1078
|
+
fetchProjectAlerting?: Resolver<Maybe<IResolversTypes['ProjectAlerting']>, ParentType, ContextType>;
|
|
1041
1079
|
fetchMonitorsCounter?: Resolver<Maybe<IResolversTypes['MonitorsCounter']>, ParentType, ContextType>;
|
|
1042
1080
|
};
|
|
1043
1081
|
|
|
@@ -1049,6 +1087,7 @@ export type IVotesGeolocationResolvers<ContextType = any, ParentType extends IRe
|
|
|
1049
1087
|
};
|
|
1050
1088
|
|
|
1051
1089
|
export type IResolvers<ContextType = any> = {
|
|
1090
|
+
AlertSubscription?: IAlertSubscriptionResolvers<ContextType>;
|
|
1052
1091
|
Brand?: IBrandResolvers<ContextType>;
|
|
1053
1092
|
Category?: ICategoryResolvers<ContextType>;
|
|
1054
1093
|
CommunityVoteDetails?: ICommunityVoteDetailsResolvers<ContextType>;
|
|
@@ -1063,6 +1102,7 @@ export type IResolvers<ContextType = any> = {
|
|
|
1063
1102
|
OpportunityV2?: IOpportunityV2Resolvers<ContextType>;
|
|
1064
1103
|
ProfileOpportunities?: IProfileOpportunitiesResolvers<ContextType>;
|
|
1065
1104
|
Project?: IProjectResolvers<ContextType>;
|
|
1105
|
+
ProjectAlerting?: IProjectAlertingResolvers<ContextType>;
|
|
1066
1106
|
ProjectCommunityVote?: IProjectCommunityVoteResolvers<ContextType>;
|
|
1067
1107
|
ProjectMonitoring?: IProjectMonitoringResolvers<ContextType>;
|
|
1068
1108
|
ProjectReactions?: IProjectReactionsResolvers<ContextType>;
|
|
@@ -1169,6 +1209,13 @@ export type IRegisterNewProjectMutation = { registerNewProject: (
|
|
|
1169
1209
|
& { project?: Maybe<Pick<IProject, 'contract' | 'name' | 'slug' | 'symbol' | 'verified'>> }
|
|
1170
1210
|
) };
|
|
1171
1211
|
|
|
1212
|
+
export type ISubscribeOnAlertsMutationVariables = Exact<{
|
|
1213
|
+
input: IAlertsSubscriptionInput;
|
|
1214
|
+
}>;
|
|
1215
|
+
|
|
1216
|
+
|
|
1217
|
+
export type ISubscribeOnAlertsMutation = Pick<IMutation, 'subscribeOnAlerts'>;
|
|
1218
|
+
|
|
1172
1219
|
export type IFetchAirdropRegistrationsCsvQueryVariables = Exact<{
|
|
1173
1220
|
opportunityId: Scalars['ID'];
|
|
1174
1221
|
}>;
|
|
@@ -1240,13 +1287,27 @@ export type IFetchProjectQuery = { fetchProject?: Maybe<(
|
|
|
1240
1287
|
& { status?: Maybe<Pick<IProjectStatus, 'monitored' | 'removalReason' | 'removalDate'>> }
|
|
1241
1288
|
)> };
|
|
1242
1289
|
|
|
1290
|
+
export type IFetchProjectAlertingQueryVariables = Exact<{ [key: string]: never; }>;
|
|
1291
|
+
|
|
1292
|
+
|
|
1293
|
+
export type IFetchProjectAlertingQuery = { fetchProjectAlerting?: Maybe<(
|
|
1294
|
+
Pick<IProjectAlerting, 'userId' | 'slotsFree' | 'slotsLimit' | 'activeUntil'>
|
|
1295
|
+
& { subscriptions?: Maybe<Array<(
|
|
1296
|
+
Pick<IAlertSubscription, 'userId' | 'projectId'>
|
|
1297
|
+
& { item: (
|
|
1298
|
+
Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'type' | 'ludoRank' | 'price' | 'verified' | 'mediaUrl' | 'originalMediaUrl'>
|
|
1299
|
+
& { ludoRankDifference?: Maybe<Pick<ILudoRankDifference, 'hourDifference' | 'dayDifference' | 'weekDifference'>> }
|
|
1300
|
+
) }
|
|
1301
|
+
)>> }
|
|
1302
|
+
)> };
|
|
1303
|
+
|
|
1243
1304
|
export type IFetchProjectBySlugQueryVariables = Exact<{
|
|
1244
1305
|
slug: Scalars['String'];
|
|
1245
1306
|
}>;
|
|
1246
1307
|
|
|
1247
1308
|
|
|
1248
1309
|
export type IFetchProjectBySlugQuery = { fetchProjectBySlug: (
|
|
1249
|
-
Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'mediaUrl' | 'originalMediaUrl' | 'userReaction' | 'communityVote' | 'hideDiagrams'>
|
|
1310
|
+
Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'mediaUrl' | 'originalMediaUrl' | 'shareLink' | 'userReaction' | 'communityVote' | 'hideDiagrams'>
|
|
1250
1311
|
& { publisher?: Maybe<Pick<IPublisher, 'userId' | 'username' | 'userpic' | 'rank'>>, status?: Maybe<Pick<IProjectStatus, 'monitored' | 'removalReason' | 'removalDate'>>, snapshots?: Maybe<Array<Maybe<Pick<IProjectSnapshot, 'date' | 'contract' | 'blockchain' | 'volume' | 'marketCap' | 'price' | 'liquidity' | 'xFollowers' | 'holders' | 'ludoRank'>>>>, reactions: Pick<IProjectReactions, 'likes' | 'neutrals' | 'dislikes'>, votesGeo?: Maybe<Array<Maybe<Pick<IVotesGeolocation, 'country' | 'votes' | 'votesPercentage'>>>>, airdrops?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minXpLevel' | 'maxXpLevel' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'blockchains' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'geolocations' | 'subscribed' | 'participantsLimit' | 'availablePlacesForAirdrop'>>>>, opportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minXpLevel' | 'maxXpLevel' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'blockchains' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'geolocations' | 'subscribed' | 'participantsLimit' | 'availablePlacesForAirdrop'>>>>, communityVotes?: Maybe<Array<Maybe<Pick<IProjectCommunityVote, 'calculatedAt' | 'communityVote' | 'likesRating' | 'neutralsRating' | 'dislikesRating'>>>>, holdersGeo?: Maybe<Array<Maybe<Pick<IHoldersGeolocation, 'country' | 'holders' | 'percentage'>>>>, communityVoteDetails?: Maybe<Array<(
|
|
1251
1312
|
Pick<ICommunityVoteDetails, 'projectId' | 'voteType' | 'avgUserRank' | 'avgWealth' | 'avgUserXps'>
|
|
1252
1313
|
& { votesGeo?: Maybe<Array<Pick<IVotesGeolocation, 'country' | 'votes' | 'votesPercentage'>>> }
|
|
@@ -1649,6 +1710,36 @@ export function useRegisterNewProjectMutation(baseOptions?: Apollo.MutationHookO
|
|
|
1649
1710
|
export type RegisterNewProjectMutationHookResult = ReturnType<typeof useRegisterNewProjectMutation>;
|
|
1650
1711
|
export type RegisterNewProjectMutationResult = Apollo.MutationResult<IRegisterNewProjectMutation>;
|
|
1651
1712
|
export type RegisterNewProjectMutationOptions = Apollo.BaseMutationOptions<IRegisterNewProjectMutation, IRegisterNewProjectMutationVariables>;
|
|
1713
|
+
export const SubscribeOnAlertsDocument = gql`
|
|
1714
|
+
mutation SubscribeOnAlerts($input: AlertsSubscriptionInput!) {
|
|
1715
|
+
subscribeOnAlerts(input: $input)
|
|
1716
|
+
}
|
|
1717
|
+
`;
|
|
1718
|
+
export type ISubscribeOnAlertsMutationFn = Apollo.MutationFunction<ISubscribeOnAlertsMutation, ISubscribeOnAlertsMutationVariables>;
|
|
1719
|
+
|
|
1720
|
+
/**
|
|
1721
|
+
* __useSubscribeOnAlertsMutation__
|
|
1722
|
+
*
|
|
1723
|
+
* To run a mutation, you first call `useSubscribeOnAlertsMutation` within a React component and pass it any options that fit your needs.
|
|
1724
|
+
* When your component renders, `useSubscribeOnAlertsMutation` returns a tuple that includes:
|
|
1725
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1726
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1727
|
+
*
|
|
1728
|
+
* @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;
|
|
1729
|
+
*
|
|
1730
|
+
* @example
|
|
1731
|
+
* const [subscribeOnAlertsMutation, { data, loading, error }] = useSubscribeOnAlertsMutation({
|
|
1732
|
+
* variables: {
|
|
1733
|
+
* input: // value for 'input'
|
|
1734
|
+
* },
|
|
1735
|
+
* });
|
|
1736
|
+
*/
|
|
1737
|
+
export function useSubscribeOnAlertsMutation(baseOptions?: Apollo.MutationHookOptions<ISubscribeOnAlertsMutation, ISubscribeOnAlertsMutationVariables>) {
|
|
1738
|
+
return Apollo.useMutation<ISubscribeOnAlertsMutation, ISubscribeOnAlertsMutationVariables>(SubscribeOnAlertsDocument, baseOptions);
|
|
1739
|
+
}
|
|
1740
|
+
export type SubscribeOnAlertsMutationHookResult = ReturnType<typeof useSubscribeOnAlertsMutation>;
|
|
1741
|
+
export type SubscribeOnAlertsMutationResult = Apollo.MutationResult<ISubscribeOnAlertsMutation>;
|
|
1742
|
+
export type SubscribeOnAlertsMutationOptions = Apollo.BaseMutationOptions<ISubscribeOnAlertsMutation, ISubscribeOnAlertsMutationVariables>;
|
|
1652
1743
|
export const FetchAirdropRegistrationsCsvDocument = gql`
|
|
1653
1744
|
query FetchAirdropRegistrationsCsv($opportunityId: ID!) {
|
|
1654
1745
|
fetchAirdropRegistrationsCsv(opportunityId: $opportunityId)
|
|
@@ -2397,6 +2488,63 @@ export function useFetchProjectLazyQuery(baseOptions?: Apollo.LazyQueryHookOptio
|
|
|
2397
2488
|
export type FetchProjectQueryHookResult = ReturnType<typeof useFetchProjectQuery>;
|
|
2398
2489
|
export type FetchProjectLazyQueryHookResult = ReturnType<typeof useFetchProjectLazyQuery>;
|
|
2399
2490
|
export type FetchProjectQueryResult = Apollo.QueryResult<IFetchProjectQuery, IFetchProjectQueryVariables>;
|
|
2491
|
+
export const FetchProjectAlertingDocument = gql`
|
|
2492
|
+
query FetchProjectAlerting {
|
|
2493
|
+
fetchProjectAlerting {
|
|
2494
|
+
userId
|
|
2495
|
+
slotsFree
|
|
2496
|
+
slotsLimit
|
|
2497
|
+
activeUntil
|
|
2498
|
+
subscriptions {
|
|
2499
|
+
userId
|
|
2500
|
+
projectId
|
|
2501
|
+
item {
|
|
2502
|
+
blockchain
|
|
2503
|
+
contract
|
|
2504
|
+
name
|
|
2505
|
+
slug
|
|
2506
|
+
symbol
|
|
2507
|
+
type
|
|
2508
|
+
ludoRank
|
|
2509
|
+
price
|
|
2510
|
+
verified
|
|
2511
|
+
mediaUrl
|
|
2512
|
+
originalMediaUrl
|
|
2513
|
+
ludoRankDifference {
|
|
2514
|
+
hourDifference
|
|
2515
|
+
dayDifference
|
|
2516
|
+
weekDifference
|
|
2517
|
+
}
|
|
2518
|
+
}
|
|
2519
|
+
}
|
|
2520
|
+
}
|
|
2521
|
+
}
|
|
2522
|
+
`;
|
|
2523
|
+
|
|
2524
|
+
/**
|
|
2525
|
+
* __useFetchProjectAlertingQuery__
|
|
2526
|
+
*
|
|
2527
|
+
* To run a query within a React component, call `useFetchProjectAlertingQuery` and pass it any options that fit your needs.
|
|
2528
|
+
* When your component renders, `useFetchProjectAlertingQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2529
|
+
* you can use to render your UI.
|
|
2530
|
+
*
|
|
2531
|
+
* @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;
|
|
2532
|
+
*
|
|
2533
|
+
* @example
|
|
2534
|
+
* const { data, loading, error } = useFetchProjectAlertingQuery({
|
|
2535
|
+
* variables: {
|
|
2536
|
+
* },
|
|
2537
|
+
* });
|
|
2538
|
+
*/
|
|
2539
|
+
export function useFetchProjectAlertingQuery(baseOptions?: Apollo.QueryHookOptions<IFetchProjectAlertingQuery, IFetchProjectAlertingQueryVariables>) {
|
|
2540
|
+
return Apollo.useQuery<IFetchProjectAlertingQuery, IFetchProjectAlertingQueryVariables>(FetchProjectAlertingDocument, baseOptions);
|
|
2541
|
+
}
|
|
2542
|
+
export function useFetchProjectAlertingLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchProjectAlertingQuery, IFetchProjectAlertingQueryVariables>) {
|
|
2543
|
+
return Apollo.useLazyQuery<IFetchProjectAlertingQuery, IFetchProjectAlertingQueryVariables>(FetchProjectAlertingDocument, baseOptions);
|
|
2544
|
+
}
|
|
2545
|
+
export type FetchProjectAlertingQueryHookResult = ReturnType<typeof useFetchProjectAlertingQuery>;
|
|
2546
|
+
export type FetchProjectAlertingLazyQueryHookResult = ReturnType<typeof useFetchProjectAlertingLazyQuery>;
|
|
2547
|
+
export type FetchProjectAlertingQueryResult = Apollo.QueryResult<IFetchProjectAlertingQuery, IFetchProjectAlertingQueryVariables>;
|
|
2400
2548
|
export const FetchProjectBySlugDocument = gql`
|
|
2401
2549
|
query FetchProjectBySlug($slug: String!) {
|
|
2402
2550
|
fetchProjectBySlug(slug: $slug) {
|
|
@@ -2443,6 +2591,7 @@ export const FetchProjectBySlugDocument = gql`
|
|
|
2443
2591
|
holders
|
|
2444
2592
|
ludoRank
|
|
2445
2593
|
}
|
|
2594
|
+
shareLink
|
|
2446
2595
|
reactions {
|
|
2447
2596
|
likes
|
|
2448
2597
|
neutrals
|