Skip to main content

Hooks List

Hooks

AnalyticsProvider()

AnalyticsProvider(__namedParameters): Element

Parameters

ParameterType
__namedParametersobject
__namedParameters.children?ReactNode
__namedParameters.uiEventsSubject<UIEventData>

Returns

Element

Source

libs/hooks/src/use-analytics.tsx:24


RootComponentPropsProvider()

RootComponentPropsProvider(__namedParameters): Element

Parameters

ParameterType
__namedParametersIRootComponentProps | IRootExtensionProps<Record<string, unknown>>

Returns

Element

Source

libs/hooks/src/use-root-props.tsx:10


createReactiveVar()

createReactiveVar<T>(initialState): ReactiveVar<T>

Type parameters

Type parameter
T

Parameters

ParameterType
initialStateT

Returns

ReactiveVar<T>

Source

libs/hooks/src/utils/create-reactive-var.ts:3


decodeb64SlateContent()

decodeb64SlateContent(base64Content, logger?): any

Utility to decode base64 slate content

Parameters

ParameterType
base64Contentstring
logger?Logger

Returns

any

Source

libs/hooks/src/utils/entry-utils.ts:14


encodeSlateToBase64()

encodeSlateToBase64(slateContent): string

Utility to encode slate content to base64

Parameters

ParameterType
slateContentDescendant[]

Returns

string

Source

libs/hooks/src/utils/entry-utils.ts:30


filterEvent()

filterEvent(eventType): MonoTypeOperatorFunction<Extract<UIEventData, object>>

Parameters

ParameterType
eventTypeAnalyticsEventTypes | EventTypes | RegisterContentBlock | RegisterExtension | RegisterWidget | RegisterApplication | RegisterRoutes | ThemeChange | NotificationEvents

Returns

MonoTypeOperatorFunction<Extract<UIEventData, object>>

Source

libs/hooks/src/utils/event-utils.ts:5


filterEvents()

filterEvents(eventTypes): MonoTypeOperatorFunction<UIEventData>

Parameters

ParameterType
eventTypes(AnalyticsEventTypes | EventTypes | RegisterContentBlock | RegisterExtension | RegisterWidget | RegisterApplication | RegisterRoutes | ThemeChange | NotificationEvents)[]

Returns

MonoTypeOperatorFunction<UIEventData>

Source

libs/hooks/src/utils/event-utils.ts:18


getFollowList()

getFollowList(followDocuments): FollowList

Parameters

ParameterType
followDocumentsAkashaFollowDocument[]

Returns

FollowList

Source

libs/hooks/src/utils/getFollowList.ts:3


getLinkPreview()

getLinkPreview(): Promise<any>

Utility to get preview of a specified url

Returns

Promise<any>

Source

libs/hooks/src/utils/media-utils.ts:49


getMediaUrl()

getMediaUrl(hash?): object

Utility to build gateway links to ipfs content

Parameters

ParameterType
hash?string

Returns

object

MemberType
fallbackLinkstring
originLinkstring
pathLinkstring

Source

libs/hooks/src/utils/media-utils.ts:19


hasOwn()

hasOwn<T, K>(o, v): o is K extends KeyofUnion<T> ? ExtractByKey<T, K<K>> : T & { [P in string | number | symbol]: unknown }

Type parameters

Type parameter
T extends Record<string | number | symbol, any>
K extends string | number | symbol

Parameters

ParameterType
oT
vK

Returns

o is K extends KeyofUnion<T> ? ExtractByKey<T, K<K>> : T & { [P in string | number | symbol]: unknown }

Source

libs/hooks/src/utils/has-own.ts:10


mapBeamEntryData()

mapBeamEntryData(beam?): BeamData

Utility to map beam entry data

Parameters

ParameterType
beam?RawBeamData

Returns

BeamData

Source

libs/hooks/src/utils/entry-utils.ts:77


mapReflectEntryData()

mapReflectEntryData(reflection?): ReflectionData

Utility to map reflect entry data

Parameters

ParameterType
reflection?RawReflectionData

Returns

ReflectionData

Source

libs/hooks/src/utils/entry-utils.ts:60


saveMediaFile()

saveMediaFile(__namedParameters): Promise<object>

Utility to save media file

Parameters

ParameterType
__namedParametersISaveMediaFile

Returns

Promise<object>

MemberTypeValue
CIDstringcid
blobBlobresized.image
sizeobjectresized.size
size.heightnumber-
size.naturalHeightnumber-
size.naturalWidthnumber-
size.widthnumber-

Source

libs/hooks/src/utils/media-utils.ts:82


sortByKey()

sortByKey<T>(array, key): T[]

Type parameters

Type parameter
T

Parameters

ParameterType
arrayT[]
keystring

Returns

T[]

Source

libs/hooks/src/utils/sort-by-key.ts:1


switchToRequiredNetwork()

switchToRequiredNetwork(): Promise<void>

A utility function to switch to required network for supported wallets

Returns

Promise<void>

Source

libs/hooks/src/use-network-state.ts:10


transformSource()

transformSource(image?): Image

Utility to transform source

Parameters

ParameterType
image?Image

Returns

Image

Source

libs/hooks/src/utils/media-utils.ts:99


useAccordion()

useAccordion(): object

Hook to manipulate the state of the Accordion component.

Returns

object

  • Object containing the active accordion ID, and methods for handling click events and setting an active ID.
MemberType
activeAccordionIdstring
handleAccordionClick(accordionId) => void
setActiveAccordionIdDispatch<SetStateAction<string>>

Example

 const { activeAccordionId, setActiveAccordionId, handleAccordionClick } = useAccordion();

Source

libs/hooks/src/use-accordion.ts:12


useAkashaStore()

useAkashaStore(): object

Returns

object

MemberType
dataIUserState<AkashaProfile>
userStoreIUserStore<AkashaProfile>

Source

libs/hooks/src/store/use-akasha-store.ts:5


useAnalytics()

useAnalytics(): [UseAnalyticsActions]

Hook to handle analytics

Returns

[UseAnalyticsActions]

Example

const [analyticsActions] = useAnalytics();

analyticsActions.trackEvent({
category: 'some-category',
action: 'some-action',
});

Source

libs/hooks/src/use-analytics.tsx:54


useConnectWallet()

useConnectWallet(): object

Hook for connecting to a user's wallet (through Metamask or any other compatible applications)

Returns

object

MemberTypeValue
connect() => void-
datastring-
errorError-
isErrorboolean!!error
isLoadingboolean-
isSuccessboolean!!data

Example

const connectWalletCall = useConnectWallet();
// make the call to the connect function when appropriate:
connectWalletCall.connect();

Source

libs/hooks/src/use-connect-wallet.ts:15


useCreateAppMutation()

useCreateAppMutation(baseOptions?): MutationTuple<CreateAppMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useCreateAppMutation

To run a mutation, you first call useCreateAppMutation within a React component and pass it any options that fit your needs. When your component renders, useCreateAppMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<CreateAppMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<CreateAppMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [createAppMutation, { data, loading, error }] = useCreateAppMutation({
variables: {
i: // value for 'i'
},
});

Source

libs/hooks/src/generated/apollo.ts:2801


useCreateBeamMutation()

useCreateBeamMutation(baseOptions?): MutationTuple<CreateBeamMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useCreateBeamMutation

To run a mutation, you first call useCreateBeamMutation within a React component and pass it any options that fit your needs. When your component renders, useCreateBeamMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<CreateBeamMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<CreateBeamMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [createBeamMutation, { data, loading, error }] = useCreateBeamMutation({
variables: {
i: // value for 'i'
},
});

Source

libs/hooks/src/generated/apollo.ts:567


useCreateContentBlockMutation()

useCreateContentBlockMutation(baseOptions?): MutationTuple<CreateContentBlockMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useCreateContentBlockMutation

To run a mutation, you first call useCreateContentBlockMutation within a React component and pass it any options that fit your needs. When your component renders, useCreateContentBlockMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<CreateContentBlockMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<CreateContentBlockMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [createContentBlockMutation, { data, loading, error }] = useCreateContentBlockMutation({
variables: {
i: // value for 'i'
},
});

Source

libs/hooks/src/generated/apollo.ts:639


useCreateFollowMutation()

useCreateFollowMutation(baseOptions?): MutationTuple<CreateFollowMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useCreateFollowMutation

To run a mutation, you first call useCreateFollowMutation within a React component and pass it any options that fit your needs. When your component renders, useCreateFollowMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<CreateFollowMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<CreateFollowMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [createFollowMutation, { data, loading, error }] = useCreateFollowMutation({
variables: {
i: // value for 'i'
},
});

Source

libs/hooks/src/generated/apollo.ts:1865


useCreateInterestsMutation()

useCreateInterestsMutation(baseOptions?): MutationTuple<CreateInterestsMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useCreateInterestsMutation

To run a mutation, you first call useCreateInterestsMutation within a React component and pass it any options that fit your needs. When your component renders, useCreateInterestsMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<CreateInterestsMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<CreateInterestsMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [createInterestsMutation, { data, loading, error }] = useCreateInterestsMutation({
variables: {
i: // value for 'i'
},
});

Source

libs/hooks/src/generated/apollo.ts:1780


useCreateProfileMutation()

useCreateProfileMutation(baseOptions?): MutationTuple<CreateProfileMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useCreateProfileMutation

To run a mutation, you first call useCreateProfileMutation within a React component and pass it any options that fit your needs. When your component renders, useCreateProfileMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<CreateProfileMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<CreateProfileMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [createProfileMutation, { data, loading, error }] = useCreateProfileMutation({
variables: {
i: // value for 'i'
},
});

Source

libs/hooks/src/generated/apollo.ts:1701


useCreateReflectMutation()

useCreateReflectMutation(baseOptions?): MutationTuple<CreateReflectMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useCreateReflectMutation

To run a mutation, you first call useCreateReflectMutation within a React component and pass it any options that fit your needs. When your component renders, useCreateReflectMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<CreateReflectMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<CreateReflectMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [createReflectMutation, { data, loading, error }] = useCreateReflectMutation({
variables: {
i: // value for 'i'
},
});

Source

libs/hooks/src/generated/apollo.ts:1274


useCurrentNetwork()

useCurrentNetwork(enabler?): object

Hook to check the user's current web3 network

Parameters

ParameterType
enabler?boolean

Returns

object

network name

MemberType
datastring
errorError
isLoadingboolean

Example

const currentNetworkQuery = useCurrentNetwork(true);

const network = currentNetworkQuery.data;

Source

libs/hooks/src/use-network-state.ts:86


useDismissedCard()

useDismissedCard(id, statusStorage?): [boolean, () => void]

Hook to manage the information cards displayed in the sidebar or inside the apps which users can dismiss by clicking the close button.

Parameters

ParameterTypeDescription
idstringstring
statusStorage?IStorageIStorage (optional) to specify from which storage to retrieve the saved dismissed card IDs.

Returns

[boolean, () => void]

Example

const [dismissed, dismissCard] = useDismissedCard('@akashaorg/ui-widget-sidebar_cta-card');

Source

libs/hooks/src/use-dismissed-card.ts:25


useEntryNavigation()

useEntryNavigation(navigateFn?, currentBeamId?): (navigationDetails, itemType) => void

Hook to navigation to entry's page

Parameters

ParameterTypeDescription
navigateFn?(args) => voidfunction (optional) that can control the actual navigation.
currentBeamId?stringstring (optional)

Returns

Function

Parameters
ParameterType
navigationDetailsIContentClickDetails
itemTypeEntityTypes
Returns

void

Example

// navigateTo is a function extracted from the `useRootComponentProps` hook.
const handleEntryNavigate = useEntryNavigation(navigateTo, 'current-beam-id');

Source

libs/hooks/src/use-navigation.ts:14


useGetAppReleaseByIdLazyQuery()

useGetAppReleaseByIdLazyQuery(baseOptions?): LazyQueryResultTuple<GetAppReleaseByIdQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetAppReleaseByIdQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetAppReleaseByIdQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:3260


useGetAppReleaseByIdQuery()

useGetAppReleaseByIdQuery(baseOptions): QueryResult<GetAppReleaseByIdQuery, Exact<object>>

useGetAppReleaseByIdQuery

To run a query within a React component, call useGetAppReleaseByIdQuery and pass it any options that fit your needs. When your component renders, useGetAppReleaseByIdQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetAppReleaseByIdQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetAppReleaseByIdQuery, Exact<object>>

Example

const { data, loading, error } = useGetAppReleaseByIdQuery({
variables: {
id: // value for 'id'
},
});

Source

libs/hooks/src/generated/apollo.ts:3256


useGetAppReleaseByIdSuspenseQuery()

useGetAppReleaseByIdSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetAppReleaseByIdQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetAppReleaseByIdQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetAppReleaseByIdQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:3264


useGetAppsByIdLazyQuery()

useGetAppsByIdLazyQuery(baseOptions?): LazyQueryResultTuple<GetAppsByIdQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetAppsByIdQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetAppsByIdQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:3012


useGetAppsByIdQuery()

useGetAppsByIdQuery(baseOptions): QueryResult<GetAppsByIdQuery, Exact<object>>

useGetAppsByIdQuery

To run a query within a React component, call useGetAppsByIdQuery and pass it any options that fit your needs. When your component renders, useGetAppsByIdQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetAppsByIdQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetAppsByIdQuery, Exact<object>>

Example

const { data, loading, error } = useGetAppsByIdQuery({
variables: {
id: // value for 'id'
},
});

Source

libs/hooks/src/generated/apollo.ts:3008


useGetAppsByIdSuspenseQuery()

useGetAppsByIdSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetAppsByIdQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetAppsByIdQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetAppsByIdQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:3016


useGetAppsByPublisherDidLazyQuery()

useGetAppsByPublisherDidLazyQuery(baseOptions?): LazyQueryResultTuple<GetAppsByPublisherDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetAppsByPublisherDidQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetAppsByPublisherDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:3081


useGetAppsByPublisherDidQuery()

useGetAppsByPublisherDidQuery(baseOptions): QueryResult<GetAppsByPublisherDidQuery, Exact<object>>

useGetAppsByPublisherDidQuery

To run a query within a React component, call useGetAppsByPublisherDidQuery and pass it any options that fit your needs. When your component renders, useGetAppsByPublisherDidQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetAppsByPublisherDidQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetAppsByPublisherDidQuery, Exact<object>>

Example

const { data, loading, error } = useGetAppsByPublisherDidQuery({
variables: {
id: // value for 'id'
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
filters: // value for 'filters'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:3077


useGetAppsByPublisherDidSuspenseQuery()

useGetAppsByPublisherDidSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetAppsByPublisherDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetAppsByPublisherDidQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetAppsByPublisherDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:3085


useGetAppsLazyQuery()

useGetAppsLazyQuery(baseOptions?): LazyQueryResultTuple<GetAppsQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetAppsQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetAppsQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2897


useGetAppsQuery()

useGetAppsQuery(baseOptions?): QueryResult<GetAppsQuery, Exact<object>>

useGetAppsQuery

To run a query within a React component, call useGetAppsQuery and pass it any options that fit your needs. When your component renders, useGetAppsQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptions?QueryHookOptions<GetAppsQuery, Exact<object>>options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetAppsQuery, Exact<object>>

Example

const { data, loading, error } = useGetAppsQuery({
variables: {
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
filters: // value for 'filters'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:2893


useGetAppsReleasesByPublisherDidLazyQuery()

useGetAppsReleasesByPublisherDidLazyQuery(baseOptions?): LazyQueryResultTuple<GetAppsReleasesByPublisherDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetAppsReleasesByPublisherDidQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetAppsReleasesByPublisherDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:3151


useGetAppsReleasesByPublisherDidQuery()

useGetAppsReleasesByPublisherDidQuery(baseOptions): QueryResult<GetAppsReleasesByPublisherDidQuery, Exact<object>>

useGetAppsReleasesByPublisherDidQuery

To run a query within a React component, call useGetAppsReleasesByPublisherDidQuery and pass it any options that fit your needs. When your component renders, useGetAppsReleasesByPublisherDidQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetAppsReleasesByPublisherDidQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetAppsReleasesByPublisherDidQuery, Exact<object>>

Example

const { data, loading, error } = useGetAppsReleasesByPublisherDidQuery({
variables: {
id: // value for 'id'
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
filters: // value for 'filters'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:3147


useGetAppsReleasesByPublisherDidSuspenseQuery()

useGetAppsReleasesByPublisherDidSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetAppsReleasesByPublisherDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetAppsReleasesByPublisherDidQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetAppsReleasesByPublisherDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:3155


useGetAppsReleasesLazyQuery()

useGetAppsReleasesLazyQuery(baseOptions?): LazyQueryResultTuple<GetAppsReleasesQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetAppsReleasesQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetAppsReleasesQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:3216


useGetAppsReleasesQuery()

useGetAppsReleasesQuery(baseOptions?): QueryResult<GetAppsReleasesQuery, Exact<object>>

useGetAppsReleasesQuery

To run a query within a React component, call useGetAppsReleasesQuery and pass it any options that fit your needs. When your component renders, useGetAppsReleasesQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptions?QueryHookOptions<GetAppsReleasesQuery, Exact<object>>options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetAppsReleasesQuery, Exact<object>>

Example

const { data, loading, error } = useGetAppsReleasesQuery({
variables: {
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
filters: // value for 'filters'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:3212


useGetAppsReleasesSuspenseQuery()

useGetAppsReleasesSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetAppsReleasesQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetAppsReleasesQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetAppsReleasesQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:3220


useGetAppsStreamLazyQuery()

useGetAppsStreamLazyQuery(baseOptions?): LazyQueryResultTuple<GetAppsStreamQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetAppsStreamQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetAppsStreamQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2969


useGetAppsStreamQuery()

useGetAppsStreamQuery(baseOptions): QueryResult<GetAppsStreamQuery, Exact<object>>

useGetAppsStreamQuery

To run a query within a React component, call useGetAppsStreamQuery and pass it any options that fit your needs. When your component renders, useGetAppsStreamQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetAppsStreamQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetAppsStreamQuery, Exact<object>>

Example

const { data, loading, error } = useGetAppsStreamQuery({
variables: {
indexer: // value for 'indexer'
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
filters: // value for 'filters'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:2965


useGetAppsStreamSuspenseQuery()

useGetAppsStreamSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetAppsStreamQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetAppsStreamQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetAppsStreamQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2973


useGetAppsSuspenseQuery()

useGetAppsSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetAppsQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetAppsQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetAppsQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2901


useGetBeamByIdLazyQuery()

useGetBeamByIdLazyQuery(baseOptions?): LazyQueryResultTuple<GetBeamByIdQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetBeamByIdQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetBeamByIdQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:918


useGetBeamByIdQuery()

useGetBeamByIdQuery(baseOptions): QueryResult<GetBeamByIdQuery, Exact<object>>

useGetBeamByIdQuery

To run a query within a React component, call useGetBeamByIdQuery and pass it any options that fit your needs. When your component renders, useGetBeamByIdQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetBeamByIdQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetBeamByIdQuery, Exact<object>>

Example

const { data, loading, error } = useGetBeamByIdQuery({
variables: {
id: // value for 'id'
},
});

Source

libs/hooks/src/generated/apollo.ts:914


useGetBeamByIdSuspenseQuery()

useGetBeamByIdSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetBeamByIdQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetBeamByIdQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetBeamByIdQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:922


useGetBeamStreamLazyQuery()

useGetBeamStreamLazyQuery(baseOptions?): LazyQueryResultTuple<GetBeamStreamQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetBeamStreamQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetBeamStreamQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:743


useGetBeamStreamQuery()

useGetBeamStreamQuery(baseOptions): QueryResult<GetBeamStreamQuery, Exact<object>>

useGetBeamStreamQuery

To run a query within a React component, call useGetBeamStreamQuery and pass it any options that fit your needs. When your component renders, useGetBeamStreamQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetBeamStreamQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetBeamStreamQuery, Exact<object>>

Example

const { data, loading, error } = useGetBeamStreamQuery({
variables: {
indexer: // value for 'indexer'
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
filters: // value for 'filters'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:739


useGetBeamStreamSuspenseQuery()

useGetBeamStreamSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetBeamStreamQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetBeamStreamQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetBeamStreamQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:747


useGetBeamsByAuthorDidLazyQuery()

useGetBeamsByAuthorDidLazyQuery(baseOptions?): LazyQueryResultTuple<GetBeamsByAuthorDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetBeamsByAuthorDidQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetBeamsByAuthorDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:876


useGetBeamsByAuthorDidQuery()

useGetBeamsByAuthorDidQuery(baseOptions): QueryResult<GetBeamsByAuthorDidQuery, Exact<object>>

useGetBeamsByAuthorDidQuery

To run a query within a React component, call useGetBeamsByAuthorDidQuery and pass it any options that fit your needs. When your component renders, useGetBeamsByAuthorDidQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetBeamsByAuthorDidQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetBeamsByAuthorDidQuery, Exact<object>>

Example

const { data, loading, error } = useGetBeamsByAuthorDidQuery({
variables: {
id: // value for 'id'
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
filters: // value for 'filters'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:872


useGetBeamsByAuthorDidSuspenseQuery()

useGetBeamsByAuthorDidSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetBeamsByAuthorDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetBeamsByAuthorDidQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetBeamsByAuthorDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:880


useGetBeamsLazyQuery()

useGetBeamsLazyQuery(baseOptions?): LazyQueryResultTuple<GetBeamsQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetBeamsQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetBeamsQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:806


useGetBeamsQuery()

useGetBeamsQuery(baseOptions?): QueryResult<GetBeamsQuery, Exact<object>>

useGetBeamsQuery

To run a query within a React component, call useGetBeamsQuery and pass it any options that fit your needs. When your component renders, useGetBeamsQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptions?QueryHookOptions<GetBeamsQuery, Exact<object>>options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetBeamsQuery, Exact<object>>

Example

const { data, loading, error } = useGetBeamsQuery({
variables: {
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
filters: // value for 'filters'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:802


useGetBeamsSuspenseQuery()

useGetBeamsSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetBeamsQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetBeamsQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetBeamsQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:810


useGetBlockStorageByIdLazyQuery()

useGetBlockStorageByIdLazyQuery(baseOptions?): LazyQueryResultTuple<GetBlockStorageByIdQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetBlockStorageByIdQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetBlockStorageByIdQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1076


useGetBlockStorageByIdQuery()

useGetBlockStorageByIdQuery(baseOptions): QueryResult<GetBlockStorageByIdQuery, Exact<object>>

useGetBlockStorageByIdQuery

To run a query within a React component, call useGetBlockStorageByIdQuery and pass it any options that fit your needs. When your component renders, useGetBlockStorageByIdQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetBlockStorageByIdQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetBlockStorageByIdQuery, Exact<object>>

Example

const { data, loading, error } = useGetBlockStorageByIdQuery({
variables: {
id: // value for 'id'
},
});

Source

libs/hooks/src/generated/apollo.ts:1072


useGetBlockStorageByIdSuspenseQuery()

useGetBlockStorageByIdSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetBlockStorageByIdQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetBlockStorageByIdQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetBlockStorageByIdQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1080


useGetContentBlockByIdLazyQuery()

useGetContentBlockByIdLazyQuery(baseOptions?): LazyQueryResultTuple<GetContentBlockByIdQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetContentBlockByIdQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetContentBlockByIdQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1034


useGetContentBlockByIdQuery()

useGetContentBlockByIdQuery(baseOptions): QueryResult<GetContentBlockByIdQuery, Exact<object>>

useGetContentBlockByIdQuery

To run a query within a React component, call useGetContentBlockByIdQuery and pass it any options that fit your needs. When your component renders, useGetContentBlockByIdQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetContentBlockByIdQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetContentBlockByIdQuery, Exact<object>>

Example

const { data, loading, error } = useGetContentBlockByIdQuery({
variables: {
id: // value for 'id'
},
});

Source

libs/hooks/src/generated/apollo.ts:1030


useGetContentBlockByIdSuspenseQuery()

useGetContentBlockByIdSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetContentBlockByIdQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetContentBlockByIdQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetContentBlockByIdQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1038


useGetContentBlockStreamLazyQuery()

useGetContentBlockStreamLazyQuery(baseOptions?): LazyQueryResultTuple<GetContentBlockStreamQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetContentBlockStreamQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetContentBlockStreamQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:992


useGetContentBlockStreamQuery()

useGetContentBlockStreamQuery(baseOptions): QueryResult<GetContentBlockStreamQuery, Exact<object>>

useGetContentBlockStreamQuery

To run a query within a React component, call useGetContentBlockStreamQuery and pass it any options that fit your needs. When your component renders, useGetContentBlockStreamQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetContentBlockStreamQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetContentBlockStreamQuery, Exact<object>>

Example

const { data, loading, error } = useGetContentBlockStreamQuery({
variables: {
indexer: // value for 'indexer'
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
filters: // value for 'filters'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:988


useGetContentBlockStreamSuspenseQuery()

useGetContentBlockStreamSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetContentBlockStreamQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetContentBlockStreamQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetContentBlockStreamQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:996


useGetFollowDocumentsByDidLazyQuery()

useGetFollowDocumentsByDidLazyQuery(baseOptions?): LazyQueryResultTuple<GetFollowDocumentsByDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetFollowDocumentsByDidQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetFollowDocumentsByDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2017


useGetFollowDocumentsByDidQuery()

useGetFollowDocumentsByDidQuery(baseOptions): QueryResult<GetFollowDocumentsByDidQuery, Exact<object>>

useGetFollowDocumentsByDidQuery

To run a query within a React component, call useGetFollowDocumentsByDidQuery and pass it any options that fit your needs. When your component renders, useGetFollowDocumentsByDidQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetFollowDocumentsByDidQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetFollowDocumentsByDidQuery, Exact<object>>

Example

const { data, loading, error } = useGetFollowDocumentsByDidQuery({
variables: {
id: // value for 'id'
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
sorting: // value for 'sorting'
following: // value for 'following'
},
});

Source

libs/hooks/src/generated/apollo.ts:2013


useGetFollowDocumentsByDidSuspenseQuery()

useGetFollowDocumentsByDidSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetFollowDocumentsByDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetFollowDocumentsByDidQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetFollowDocumentsByDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2021


useGetFollowersListByDidLazyQuery()

useGetFollowersListByDidLazyQuery(baseOptions?): LazyQueryResultTuple<GetFollowersListByDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetFollowersListByDidQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetFollowersListByDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2634


useGetFollowersListByDidQuery()

useGetFollowersListByDidQuery(baseOptions): QueryResult<GetFollowersListByDidQuery, Exact<object>>

useGetFollowersListByDidQuery

To run a query within a React component, call useGetFollowersListByDidQuery and pass it any options that fit your needs. When your component renders, useGetFollowersListByDidQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetFollowersListByDidQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetFollowersListByDidQuery, Exact<object>>

Example

const { data, loading, error } = useGetFollowersListByDidQuery({
variables: {
id: // value for 'id'
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:2630


useGetFollowersListByDidSuspenseQuery()

useGetFollowersListByDidSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetFollowersListByDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetFollowersListByDidQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetFollowersListByDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2638


useGetFollowingListByDidLazyQuery()

useGetFollowingListByDidLazyQuery(baseOptions?): LazyQueryResultTuple<GetFollowingListByDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetFollowingListByDidQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetFollowingListByDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2554


useGetFollowingListByDidQuery()

useGetFollowingListByDidQuery(baseOptions): QueryResult<GetFollowingListByDidQuery, Exact<object>>

useGetFollowingListByDidQuery

To run a query within a React component, call useGetFollowingListByDidQuery and pass it any options that fit your needs. When your component renders, useGetFollowingListByDidQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetFollowingListByDidQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetFollowingListByDidQuery, Exact<object>>

Example

const { data, loading, error } = useGetFollowingListByDidQuery({
variables: {
id: // value for 'id'
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:2550


useGetFollowingListByDidSuspenseQuery()

useGetFollowingListByDidSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetFollowingListByDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetFollowingListByDidQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetFollowingListByDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2558


useGetIndexedStreamCountLazyQuery()

useGetIndexedStreamCountLazyQuery(baseOptions?): LazyQueryResultTuple<GetIndexedStreamCountQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetIndexedStreamCountQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetIndexedStreamCountQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1197


useGetIndexedStreamCountQuery()

useGetIndexedStreamCountQuery(baseOptions): QueryResult<GetIndexedStreamCountQuery, Exact<object>>

useGetIndexedStreamCountQuery

To run a query within a React component, call useGetIndexedStreamCountQuery and pass it any options that fit your needs. When your component renders, useGetIndexedStreamCountQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetIndexedStreamCountQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetIndexedStreamCountQuery, Exact<object>>

Example

const { data, loading, error } = useGetIndexedStreamCountQuery({
variables: {
indexer: // value for 'indexer'
filters: // value for 'filters'
},
});

Source

libs/hooks/src/generated/apollo.ts:1193


useGetIndexedStreamCountSuspenseQuery()

useGetIndexedStreamCountSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetIndexedStreamCountQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetIndexedStreamCountQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetIndexedStreamCountQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1201


useGetIndexedStreamLazyQuery()

useGetIndexedStreamLazyQuery(baseOptions?): LazyQueryResultTuple<GetIndexedStreamQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetIndexedStreamQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetIndexedStreamQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1153


useGetIndexedStreamQuery()

useGetIndexedStreamQuery(baseOptions): QueryResult<GetIndexedStreamQuery, Exact<object>>

useGetIndexedStreamQuery

To run a query within a React component, call useGetIndexedStreamQuery and pass it any options that fit your needs. When your component renders, useGetIndexedStreamQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetIndexedStreamQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetIndexedStreamQuery, Exact<object>>

Example

const { data, loading, error } = useGetIndexedStreamQuery({
variables: {
indexer: // value for 'indexer'
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
filters: // value for 'filters'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:1149


useGetIndexedStreamSuspenseQuery()

useGetIndexedStreamSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetIndexedStreamQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetIndexedStreamQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetIndexedStreamQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1157


useGetInterestsByDidLazyQuery()

useGetInterestsByDidLazyQuery(baseOptions?): LazyQueryResultTuple<GetInterestsByDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetInterestsByDidQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetInterestsByDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2429


useGetInterestsByDidQuery()

useGetInterestsByDidQuery(baseOptions): QueryResult<GetInterestsByDidQuery, Exact<object>>

useGetInterestsByDidQuery

To run a query within a React component, call useGetInterestsByDidQuery and pass it any options that fit your needs. When your component renders, useGetInterestsByDidQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetInterestsByDidQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetInterestsByDidQuery, Exact<object>>

Example

const { data, loading, error } = useGetInterestsByDidQuery({
variables: {
id: // value for 'id'
},
});

Source

libs/hooks/src/generated/apollo.ts:2425


useGetInterestsByDidSuspenseQuery()

useGetInterestsByDidSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetInterestsByDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetInterestsByDidQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetInterestsByDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2433


useGetInterestsByIdLazyQuery()

useGetInterestsByIdLazyQuery(baseOptions?): LazyQueryResultTuple<GetInterestsByIdQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetInterestsByIdQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetInterestsByIdQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2478


useGetInterestsByIdQuery()

useGetInterestsByIdQuery(baseOptions): QueryResult<GetInterestsByIdQuery, Exact<object>>

useGetInterestsByIdQuery

To run a query within a React component, call useGetInterestsByIdQuery and pass it any options that fit your needs. When your component renders, useGetInterestsByIdQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetInterestsByIdQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetInterestsByIdQuery, Exact<object>>

Example

const { data, loading, error } = useGetInterestsByIdQuery({
variables: {
id: // value for 'id'
},
});

Source

libs/hooks/src/generated/apollo.ts:2474


useGetInterestsByIdSuspenseQuery()

useGetInterestsByIdSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetInterestsByIdQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetInterestsByIdQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetInterestsByIdQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2482


useGetInterestsLazyQuery()

useGetInterestsLazyQuery(baseOptions?): LazyQueryResultTuple<GetInterestsQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetInterestsQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetInterestsQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2305


useGetInterestsQuery()

useGetInterestsQuery(baseOptions?): QueryResult<GetInterestsQuery, Exact<object>>

useGetInterestsQuery

To run a query within a React component, call useGetInterestsQuery and pass it any options that fit your needs. When your component renders, useGetInterestsQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptions?QueryHookOptions<GetInterestsQuery, Exact<object>>options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetInterestsQuery, Exact<object>>

Example

const { data, loading, error } = useGetInterestsQuery({
variables: {
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
},
});

Source

libs/hooks/src/generated/apollo.ts:2301


useGetInterestsStreamLazyQuery()

useGetInterestsStreamLazyQuery(baseOptions?): LazyQueryResultTuple<GetInterestsStreamQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetInterestsStreamQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetInterestsStreamQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2377


useGetInterestsStreamQuery()

useGetInterestsStreamQuery(baseOptions): QueryResult<GetInterestsStreamQuery, Exact<object>>

useGetInterestsStreamQuery

To run a query within a React component, call useGetInterestsStreamQuery and pass it any options that fit your needs. When your component renders, useGetInterestsStreamQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetInterestsStreamQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetInterestsStreamQuery, Exact<object>>

Example

const { data, loading, error } = useGetInterestsStreamQuery({
variables: {
indexer: // value for 'indexer'
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
sorting: // value for 'sorting'
filters: // value for 'filters'
},
});

Source

libs/hooks/src/generated/apollo.ts:2373


useGetInterestsStreamSuspenseQuery()

useGetInterestsStreamSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetInterestsStreamQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetInterestsStreamQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetInterestsStreamQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2381


useGetInterestsSuspenseQuery()

useGetInterestsSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetInterestsQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetInterestsQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetInterestsQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2309


useGetMyProfileLazyQuery()

useGetMyProfileLazyQuery(baseOptions?): LazyQueryResultTuple<GetMyProfileQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetMyProfileQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetMyProfileQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1943


useGetMyProfileQuery()

useGetMyProfileQuery(baseOptions?): QueryResult<GetMyProfileQuery, Exact<object>>

useGetMyProfileQuery

To run a query within a React component, call useGetMyProfileQuery and pass it any options that fit your needs. When your component renders, useGetMyProfileQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptions?QueryHookOptions<GetMyProfileQuery, Exact<object>>options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetMyProfileQuery, Exact<object>>

Example

const { data, loading, error } = useGetMyProfileQuery({
variables: {
},
});

Source

libs/hooks/src/generated/apollo.ts:1939


useGetMyProfileSuspenseQuery()

useGetMyProfileSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetMyProfileQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetMyProfileQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetMyProfileQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1947


useGetProfileByDidLazyQuery()

useGetProfileByDidLazyQuery(baseOptions?): LazyQueryResultTuple<GetProfileByDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetProfileByDidQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetProfileByDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2104


useGetProfileByDidQuery()

useGetProfileByDidQuery(baseOptions): QueryResult<GetProfileByDidQuery, Exact<object>>

useGetProfileByDidQuery

To run a query within a React component, call useGetProfileByDidQuery and pass it any options that fit your needs. When your component renders, useGetProfileByDidQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetProfileByDidQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetProfileByDidQuery, Exact<object>>

Example

const { data, loading, error } = useGetProfileByDidQuery({
variables: {
id: // value for 'id'
},
});

Source

libs/hooks/src/generated/apollo.ts:2100


useGetProfileByDidSuspenseQuery()

useGetProfileByDidSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetProfileByDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetProfileByDidQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetProfileByDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2108


useGetProfileByIdLazyQuery()

useGetProfileByIdLazyQuery(baseOptions?): LazyQueryResultTuple<GetProfileByIdQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetProfileByIdQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetProfileByIdQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2059


useGetProfileByIdQuery()

useGetProfileByIdQuery(baseOptions): QueryResult<GetProfileByIdQuery, Exact<object>>

useGetProfileByIdQuery

To run a query within a React component, call useGetProfileByIdQuery and pass it any options that fit your needs. When your component renders, useGetProfileByIdQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetProfileByIdQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetProfileByIdQuery, Exact<object>>

Example

const { data, loading, error } = useGetProfileByIdQuery({
variables: {
id: // value for 'id'
},
});

Source

libs/hooks/src/generated/apollo.ts:2055


useGetProfileByIdSuspenseQuery()

useGetProfileByIdSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetProfileByIdQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetProfileByIdQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetProfileByIdQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2063


useGetProfileStatsByDidLazyQuery()

useGetProfileStatsByDidLazyQuery(baseOptions?): LazyQueryResultTuple<GetProfileStatsByDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetProfileStatsByDidQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetProfileStatsByDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2683


useGetProfileStatsByDidQuery()

useGetProfileStatsByDidQuery(baseOptions): QueryResult<GetProfileStatsByDidQuery, Exact<object>>

useGetProfileStatsByDidQuery

To run a query within a React component, call useGetProfileStatsByDidQuery and pass it any options that fit your needs. When your component renders, useGetProfileStatsByDidQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetProfileStatsByDidQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetProfileStatsByDidQuery, Exact<object>>

Example

const { data, loading, error } = useGetProfileStatsByDidQuery({
variables: {
id: // value for 'id'
},
});

Source

libs/hooks/src/generated/apollo.ts:2679


useGetProfileStatsByDidSuspenseQuery()

useGetProfileStatsByDidSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetProfileStatsByDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetProfileStatsByDidQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetProfileStatsByDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2687


useGetProfileStreamLazyQuery()

useGetProfileStreamLazyQuery(baseOptions?): LazyQueryResultTuple<GetProfileStreamQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetProfileStreamQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetProfileStreamQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2239


useGetProfileStreamQuery()

useGetProfileStreamQuery(baseOptions): QueryResult<GetProfileStreamQuery, Exact<object>>

useGetProfileStreamQuery

To run a query within a React component, call useGetProfileStreamQuery and pass it any options that fit your needs. When your component renders, useGetProfileStreamQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetProfileStreamQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetProfileStreamQuery, Exact<object>>

Example

const { data, loading, error } = useGetProfileStreamQuery({
variables: {
indexer: // value for 'indexer'
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
filters: // value for 'filters'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:2235


useGetProfileStreamSuspenseQuery()

useGetProfileStreamSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetProfileStreamQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetProfileStreamQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetProfileStreamQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2243


useGetProfilesLazyQuery()

useGetProfilesLazyQuery(baseOptions?): LazyQueryResultTuple<GetProfilesQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetProfilesQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetProfilesQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2167


useGetProfilesQuery()

useGetProfilesQuery(baseOptions?): QueryResult<GetProfilesQuery, Exact<object>>

useGetProfilesQuery

To run a query within a React component, call useGetProfilesQuery and pass it any options that fit your needs. When your component renders, useGetProfilesQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptions?QueryHookOptions<GetProfilesQuery, Exact<object>>options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetProfilesQuery, Exact<object>>

Example

const { data, loading, error } = useGetProfilesQuery({
variables: {
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
filters: // value for 'filters'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:2163


useGetProfilesSuspenseQuery()

useGetProfilesSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetProfilesQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetProfilesQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetProfilesQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:2171


useGetReflectReflectionsLazyQuery()

useGetReflectReflectionsLazyQuery(baseOptions?): LazyQueryResultTuple<GetReflectReflectionsQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetReflectReflectionsQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetReflectReflectionsQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1624


useGetReflectReflectionsQuery()

useGetReflectReflectionsQuery(baseOptions): QueryResult<GetReflectReflectionsQuery, Exact<object>>

useGetReflectReflectionsQuery

To run a query within a React component, call useGetReflectReflectionsQuery and pass it any options that fit your needs. When your component renders, useGetReflectReflectionsQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetReflectReflectionsQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetReflectReflectionsQuery, Exact<object>>

Example

const { data, loading, error } = useGetReflectReflectionsQuery({
variables: {
id: // value for 'id'
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:1620


useGetReflectReflectionsSuspenseQuery()

useGetReflectReflectionsSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetReflectReflectionsQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetReflectReflectionsQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetReflectReflectionsQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1628


useGetReflectionByIdLazyQuery()

useGetReflectionByIdLazyQuery(baseOptions?): LazyQueryResultTuple<GetReflectionByIdQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetReflectionByIdQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetReflectionByIdQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1561


useGetReflectionByIdQuery()

useGetReflectionByIdQuery(baseOptions): QueryResult<GetReflectionByIdQuery, Exact<object>>

useGetReflectionByIdQuery

To run a query within a React component, call useGetReflectionByIdQuery and pass it any options that fit your needs. When your component renders, useGetReflectionByIdQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetReflectionByIdQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetReflectionByIdQuery, Exact<object>>

Example

const { data, loading, error } = useGetReflectionByIdQuery({
variables: {
id: // value for 'id'
},
});

Source

libs/hooks/src/generated/apollo.ts:1557


useGetReflectionByIdSuspenseQuery()

useGetReflectionByIdSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetReflectionByIdQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetReflectionByIdQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetReflectionByIdQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1565


useGetReflectionStreamLazyQuery()

useGetReflectionStreamLazyQuery(baseOptions?): LazyQueryResultTuple<GetReflectionStreamQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetReflectionStreamQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetReflectionStreamQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1519


useGetReflectionStreamQuery()

useGetReflectionStreamQuery(baseOptions): QueryResult<GetReflectionStreamQuery, Exact<object>>

useGetReflectionStreamQuery

To run a query within a React component, call useGetReflectionStreamQuery and pass it any options that fit your needs. When your component renders, useGetReflectionStreamQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetReflectionStreamQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetReflectionStreamQuery, Exact<object>>

Example

const { data, loading, error } = useGetReflectionStreamQuery({
variables: {
indexer: // value for 'indexer'
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
filters: // value for 'filters'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:1515


useGetReflectionStreamSuspenseQuery()

useGetReflectionStreamSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetReflectionStreamQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetReflectionStreamQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetReflectionStreamQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1523


useGetReflectionsByAuthorDidLazyQuery()

useGetReflectionsByAuthorDidLazyQuery(baseOptions?): LazyQueryResultTuple<GetReflectionsByAuthorDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetReflectionsByAuthorDidQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetReflectionsByAuthorDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1443


useGetReflectionsByAuthorDidQuery()

useGetReflectionsByAuthorDidQuery(baseOptions): QueryResult<GetReflectionsByAuthorDidQuery, Exact<object>>

useGetReflectionsByAuthorDidQuery

To run a query within a React component, call useGetReflectionsByAuthorDidQuery and pass it any options that fit your needs. When your component renders, useGetReflectionsByAuthorDidQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetReflectionsByAuthorDidQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetReflectionsByAuthorDidQuery, Exact<object>>

Example

const { data, loading, error } = useGetReflectionsByAuthorDidQuery({
variables: {
id: // value for 'id'
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
filters: // value for 'filters'
sorting: // value for 'sorting'
},
});

Source

libs/hooks/src/generated/apollo.ts:1439


useGetReflectionsByAuthorDidSuspenseQuery()

useGetReflectionsByAuthorDidSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetReflectionsByAuthorDidQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetReflectionsByAuthorDidQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetReflectionsByAuthorDidQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1447


useGetReflectionsFromBeamLazyQuery()

useGetReflectionsFromBeamLazyQuery(baseOptions?): LazyQueryResultTuple<GetReflectionsFromBeamQuery, Exact<object>>

Parameters

ParameterType
baseOptions?LazyQueryHookOptions<GetReflectionsFromBeamQuery, Exact<object>>

Returns

LazyQueryResultTuple<GetReflectionsFromBeamQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1374


useGetReflectionsFromBeamQuery()

useGetReflectionsFromBeamQuery(baseOptions): QueryResult<GetReflectionsFromBeamQuery, Exact<object>>

useGetReflectionsFromBeamQuery

To run a query within a React component, call useGetReflectionsFromBeamQuery and pass it any options that fit your needs. When your component renders, useGetReflectionsFromBeamQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

Parameters

ParameterTypeDescription
baseOptionsQueryHookOptions<GetReflectionsFromBeamQuery, Exact<object>> & object | objectoptions that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;

Returns

QueryResult<GetReflectionsFromBeamQuery, Exact<object>>

Example

const { data, loading, error } = useGetReflectionsFromBeamQuery({
variables: {
id: // value for 'id'
after: // value for 'after'
before: // value for 'before'
first: // value for 'first'
last: // value for 'last'
sorting: // value for 'sorting'
filters: // value for 'filters'
},
});

Source

libs/hooks/src/generated/apollo.ts:1370


useGetReflectionsFromBeamSuspenseQuery()

useGetReflectionsFromBeamSuspenseQuery(baseOptions?): UseSuspenseQueryResult<GetReflectionsFromBeamQuery, Exact<object>>

Parameters

ParameterType
baseOptions?SuspenseQueryHookOptions<GetReflectionsFromBeamQuery, Exact<object>>

Returns

UseSuspenseQueryResult<GetReflectionsFromBeamQuery, Exact<object>>

Source

libs/hooks/src/generated/apollo.ts:1378


useGetSettings()

useGetSettings(app): object

Hook to get saved settings for an app

Parameters

ParameterTypeDescription
appstringstring: The app's name for example @akashaorg/app-extensions

Returns

object

MemberTypeValue
dataanysettings
errorobject-
error.messagestring-
isLoadingboolean-

Example

const savedSettingsQuery = useGetSettings('@akashaorg/app-akasha-verse');
const savedSettings = savedSettingsQuery.data;

Source

libs/hooks/src/use-settings.ts:88


useIndexBeamMutation()

useIndexBeamMutation(baseOptions?): MutationTuple<IndexBeamMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useIndexBeamMutation

To run a mutation, you first call useIndexBeamMutation within a React component and pass it any options that fit your needs. When your component renders, useIndexBeamMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<IndexBeamMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<IndexBeamMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [indexBeamMutation, { data, loading, error }] = useIndexBeamMutation({
variables: {
jws: // value for 'jws'
capability: // value for 'capability'
},
});

Source

libs/hooks/src/generated/apollo.ts:495


useIndexContentBlockMutation()

useIndexContentBlockMutation(baseOptions?): MutationTuple<IndexContentBlockMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useIndexContentBlockMutation

To run a mutation, you first call useIndexContentBlockMutation within a React component and pass it any options that fit your needs. When your component renders, useIndexContentBlockMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<IndexContentBlockMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<IndexContentBlockMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [indexContentBlockMutation, { data, loading, error }] = useIndexContentBlockMutation({
variables: {
jws: // value for 'jws'
capability: // value for 'capability'
},
});

Source

libs/hooks/src/generated/apollo.ts:531


useIndexProfileMutation()

useIndexProfileMutation(baseOptions?): MutationTuple<IndexProfileMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useIndexProfileMutation

To run a mutation, you first call useIndexProfileMutation within a React component and pass it any options that fit your needs. When your component renders, useIndexProfileMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<IndexProfileMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<IndexProfileMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [indexProfileMutation, { data, loading, error }] = useIndexProfileMutation({
variables: {
jws: // value for 'jws'
capability: // value for 'capability'
},
});

Source

libs/hooks/src/generated/apollo.ts:1665


useIndexReflectionMutation()

useIndexReflectionMutation(baseOptions?): MutationTuple<IndexReflectionMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useIndexReflectionMutation

To run a mutation, you first call useIndexReflectionMutation within a React component and pass it any options that fit your needs. When your component renders, useIndexReflectionMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<IndexReflectionMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<IndexReflectionMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [indexReflectionMutation, { data, loading, error }] = useIndexReflectionMutation({
variables: {
jws: // value for 'jws'
capability: // value for 'capability'
},
});

Source

libs/hooks/src/generated/apollo.ts:1238


useLegalDoc()

useLegalDoc(docName): object

Hook to get legal docs stored on ipfs

Parameters

ParameterTypeDescription
docNameLEGAL_DOCSLEGAL_DOCS the type of the legal doc being retrieved

Returns

object

MemberTypeValue
datastring-
errorError-
isFetchedboolean...
isLoadingboolean-

Example

const termsOfUseDocQuery = useLegalDoc('TermsOfUse');

const termsOfUseDoc = termsOfUseDocQuery.data;

Source

libs/hooks/src/use-legal.ts:21


useListenForMutationEvents()

useListenForMutationEvents(): any

Hook to listen for mutation events emitted from the SDK's globalChannel.

Returns

any

Example

const { messageObj, appid, success, pending } = useListenForMutationEvents();

Source

libs/hooks/src/use-notifications.ts:13


useMentions()

useMentions(authenticatedDID): object

Hook to retrieve and set the mentions associated with a profile.

Parameters

ParameterTypeDescription
authenticatedDIDstringstring

Returns

object

  • Object containing the mentions associated with the authenticatedDID and a setMentionQuery method to control the querying of mention data.
MemberType
mentionsobject[]
setMentionQueryDispatch<SetStateAction<string>>

Example

const { setMentionQuery, mentions } = useMentions('an authenticated DID');

Source

libs/hooks/src/use-mentions.ts:16


useModalData()

useModalData(): object

Hook to handle the data supplied to the LoginModal extension.

Returns

object

  • Object containing the params passed in the url
MemberType
modalDataobject
modalData.messagestring
modalData.namestring
modalData.titlestring

Example

const { modalData } = useModalData();

Source

libs/hooks/src/use-modal-data.ts:14


useModerationCategory()

useModerationCategory(props): useModerationCategoryReturnType

Hook to handle moderation/report categories

Parameters

ParameterTypeDescription
propsuseModerationCategoryPropsuseModerationCategoryProps

Returns

useModerationCategoryReturnType

useModerationCategoryReturnType

Source

libs/hooks/src/use-moderation-categories.ts:20


useNetworkChangeListener()

useNetworkChangeListener(): any[]

Returns

any[]

Source

libs/hooks/src/use-network-state.ts:160


useNetworkState()

useNetworkState(enabler?): object

Hook to check if the web3 provider is set to function on the Rinkeby test network

Parameters

ParameterTypeDescription
enabler?booleanboolean (optional) that can control when to start verifying network state

Returns

object

networkNotSupported: true if web3 provider is not on the specified network

MemberType
dataobject
data.networkNotSupportedboolean
errorError
isFetchedboolean
isLoadingboolean

Example

const networkStateQuery = useNetworkState(true);

const networkNotSupported = networkStateQuery.data.networkNotSupported;

Source

libs/hooks/src/use-network-state.ts:37


useNsfwToggling()

useNsfwToggling(): object

Hook to get and set user's choice for showing/hiding nsfw content

Returns

object

MemberType
showNsfwboolean
toggleShowNsfw(showNsfw) => void

Example

const {showNsfw, toggleShowNsfw} = useNsfwToggling();

To toggle the nsfw state, pass a boolean value to the toggleShowNsfw function, e.g. toggleShowNsfw(true)

Source

libs/hooks/src/use-nsfw.ts:13


usePlaformHealthCheck()

usePlaformHealthCheck(): object

Hook to check the overall status of the platform.

Returns

object

  • Object containing the data and query status
MemberType
dataobject
data.statusCodenumber
data.successboolean
isLoadingboolean

Example

const { data, isLoading } = usePlaformHealthCheck();

Source

libs/hooks/src/use-health-check.ts:19


useProfileStats()

useProfileStats(profileId, readCache?): object

Hook to get a profile's stats (number of beams, followers, following, etc. )

Parameters

ParameterTypeDescription
profileIdstringstring
readCache?booleanboolean (optional) to indicate whether to read from the cache

Returns

object

MemberTypeValue
dataobjectstat.data
data.totalBeamsnumber0
data.totalFollowersnumber0
data.totalFollowingnumber0
data.totalReflectionsnumber0
data.totalTopicsnumber0
errorany-
loadingboolean-

Example

const profileStatsQuery = useProfileStats('did:pkh:eip155:5:0xadc81c169...');

console.log(profileStatsQuery.data)

Source

libs/hooks/src/use-profile-stats.ts:27


useRequiredNetwork()

useRequiredNetwork(): object

A hook to get required network name from the SDK

Returns

object

MemberType
dataobject
data.chainId11155111
data.namestring
errorError
isLoadingboolean
isSuccessboolean

Example

const requiredNetworkQuery = useRequiredNetworkName();

const requiredNetworkName = requiredNetworkQuery.data;

Source

libs/hooks/src/use-network-state.ts:129


useRootComponentProps()

useRootComponentProps<T>(): object & T

Hook to manage and access the context of the plugins for routing, translation, and extensions. For example, through this hook, the getRoutingPluginmethod can be used to navigate between apps, or the worldConfig object can be used for accessing the config info related to the World the whole application belongs to.

Type parameters

Type parameter
T extends IRootComponentProps

Returns

object & T

Example

  const { getTranslationPlugin, baseRouteName,getRoutingPlugin, navigateToModal, worldConfig } = useRootComponentProps();

Source

libs/hooks/src/use-root-props.tsx:31


useSaveSettings()

useSaveSettings(): object

Hook to save app's settings using sdk settings service

Returns

object

MemberType
dataunknown
errorobject
error.messagestring
isLoadingboolean
saveNotificationSettings(params, callback?) => void

Example

const { saveNotificationSettings } = useSaveSettings();
saveNotificationSettings(
{ app: '@akashaorg/app-extensions', options: NotificationsOptions },
callback: {onComplete: () => void}
)

Source

libs/hooks/src/use-settings.ts:38


useSetAppReleaseMutation()

useSetAppReleaseMutation(baseOptions?): MutationTuple<SetAppReleaseMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useSetAppReleaseMutation

To run a mutation, you first call useSetAppReleaseMutation within a React component and pass it any options that fit your needs. When your component renders, useSetAppReleaseMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<SetAppReleaseMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<SetAppReleaseMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [setAppReleaseMutation, { data, loading, error }] = useSetAppReleaseMutation({
variables: {
i: // value for 'i'
},
});

Source

libs/hooks/src/generated/apollo.ts:2726


useShowFeedback()

useShowFeedback(initialShowValue?): [boolean, Dispatch<SetStateAction<boolean>>]

Hook to manage the state of the feedback shown in the snackbar.

Parameters

ParameterTypeDescription
initialShowValue?booleanboolean (optional)

Returns

[boolean, Dispatch<SetStateAction<boolean>>]

The state of whether to show the feedback message and a function to set that state.

Example

  const [showFeedback, setShowFeedback] = useShowFeedback();

Source

libs/hooks/src/use-show-feedback.ts:13


useTheme()

useTheme(): TUseThemeReturn

Hook to check the current theme or set one

Returns

TUseThemeReturn

{ theme, propagateTheme } The current theme and a function to set the theme. The propagateTheme function takes two parameters: the first one is the theme to be set, and a second (optional) one is a boolean to indicate whether you want to save the theme to local storage as well.

Example

const { theme, propagateTheme } = useTheme();

Source

libs/hooks/src/use-theme.ts:23


useUpdateAkashaReflectMutation()

useUpdateAkashaReflectMutation(baseOptions?): MutationTuple<UpdateAkashaReflectMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useUpdateAkashaReflectMutation

To run a mutation, you first call useUpdateAkashaReflectMutation within a React component and pass it any options that fit your needs. When your component renders, useUpdateAkashaReflectMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<UpdateAkashaReflectMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<UpdateAkashaReflectMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [updateAkashaReflectMutation, { data, loading, error }] = useUpdateAkashaReflectMutation({
variables: {
i: // value for 'i'
},
});

Source

libs/hooks/src/generated/apollo.ts:1310


useUpdateAppMutation()

useUpdateAppMutation(baseOptions?): MutationTuple<UpdateAppMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useUpdateAppMutation

To run a mutation, you first call useUpdateAppMutation within a React component and pass it any options that fit your needs. When your component renders, useUpdateAppMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<UpdateAppMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<UpdateAppMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [updateAppMutation, { data, loading, error }] = useUpdateAppMutation({
variables: {
i: // value for 'i'
},
});

Source

libs/hooks/src/generated/apollo.ts:2838


useUpdateAppReleaseMutation()

useUpdateAppReleaseMutation(baseOptions?): MutationTuple<UpdateAppReleaseMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useUpdateAppReleaseMutation

To run a mutation, you first call useUpdateAppReleaseMutation within a React component and pass it any options that fit your needs. When your component renders, useUpdateAppReleaseMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<UpdateAppReleaseMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<UpdateAppReleaseMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [updateAppReleaseMutation, { data, loading, error }] = useUpdateAppReleaseMutation({
variables: {
i: // value for 'i'
},
});

Source

libs/hooks/src/generated/apollo.ts:2764


useUpdateBeamMutation()

useUpdateBeamMutation(baseOptions?): MutationTuple<UpdateBeamMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useUpdateBeamMutation

To run a mutation, you first call useUpdateBeamMutation within a React component and pass it any options that fit your needs. When your component renders, useUpdateBeamMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<UpdateBeamMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<UpdateBeamMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [updateBeamMutation, { data, loading, error }] = useUpdateBeamMutation({
variables: {
i: // value for 'i'
},
});

Source

libs/hooks/src/generated/apollo.ts:603


useUpdateContentBlockMutation()

useUpdateContentBlockMutation(baseOptions?): MutationTuple<UpdateContentBlockMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useUpdateContentBlockMutation

To run a mutation, you first call useUpdateContentBlockMutation within a React component and pass it any options that fit your needs. When your component renders, useUpdateContentBlockMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<UpdateContentBlockMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<UpdateContentBlockMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [updateContentBlockMutation, { data, loading, error }] = useUpdateContentBlockMutation({
variables: {
i: // value for 'i'
},
});

Source

libs/hooks/src/generated/apollo.ts:675


useUpdateFollowMutation()

useUpdateFollowMutation(baseOptions?): MutationTuple<UpdateFollowMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useUpdateFollowMutation

To run a mutation, you first call useUpdateFollowMutation within a React component and pass it any options that fit your needs. When your component renders, useUpdateFollowMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<UpdateFollowMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<UpdateFollowMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [updateFollowMutation, { data, loading, error }] = useUpdateFollowMutation({
variables: {
i: // value for 'i'
},
});

Source

libs/hooks/src/generated/apollo.ts:1907


useUpdateInterestsMutation()

useUpdateInterestsMutation(baseOptions?): MutationTuple<UpdateInterestsMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useUpdateInterestsMutation

To run a mutation, you first call useUpdateInterestsMutation within a React component and pass it any options that fit your needs. When your component renders, useUpdateInterestsMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<UpdateInterestsMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<UpdateInterestsMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [updateInterestsMutation, { data, loading, error }] = useUpdateInterestsMutation({
variables: {
i: // value for 'i'
},
});

Source

libs/hooks/src/generated/apollo.ts:1823


useUpdateProfileMutation()

useUpdateProfileMutation(baseOptions?): MutationTuple<UpdateProfileMutation, Exact<object>, DefaultContext, ApolloCache<any>>

useUpdateProfileMutation

To run a mutation, you first call useUpdateProfileMutation within a React component and pass it any options that fit your needs. When your component renders, useUpdateProfileMutation returns a tuple that includes:

  • A mutate function that you can call at any time to execute the mutation
  • An object with fields that represent the current status of the mutation's execution

Parameters

ParameterTypeDescription
baseOptions?MutationHookOptions<UpdateProfileMutation, Exact<object>, DefaultContext, ApolloCache<any>>options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;

Returns

MutationTuple<UpdateProfileMutation, Exact<object>, DefaultContext, ApolloCache<any>>

Example

const [updateProfileMutation, { data, loading, error }] = useUpdateProfileMutation({
variables: {
i: // value for 'i'
},
});

Source

libs/hooks/src/generated/apollo.ts:1737


useValidDid()

useValidDid(profileId, enabled?): object

Hook to check the validity of an address

Parameters

ParameterType
profileIdstring
enabled?boolean

Returns

object

MemberType
isEthAddressboolean
isLoadingboolean
validDidboolean

Example

const { validDid, isEthAddress } = useValidDid(profileDID, !!profileDID)

If you want to conditionally eable or disable address check from the hook, include the enabledparam, which is !!profileDID in the example above.

Source

libs/hooks/src/use-valid-did.ts:19


validateType()

validateType<T>(arg1, type): boolean

Type parameters

Type parameter
T

Parameters

ParameterType
arg1T
typestring

Returns

boolean

Source

libs/hooks/src/utils/generic-utils.ts:1


withProviders()

withProviders<T>(WrappedComponent): (props) => Element

Higher order component that wraps a component with all necessary providers

Type parameters

Type parameter
T extends IRootComponentProps

Parameters

ParameterType
WrappedComponentComponentType<T>

Returns

Function

Parameters
ParameterType
propsT
Returns

Element

MemberType
displayNamestring

Source

libs/hooks/src/utils/provider-hoc.tsx:11

Classes

UserStore<T>

Singleton store for managing login, logout, session restoration and fetching profile. It uses jotai to manage the store

Type parameters

Type parameter
T

Implements

  • IUserStore<T>

Methods

getSnapshot()

getSnapshot(): IUserState<T>

Get a snapshot of store data

Returns

IUserState<T>

Implementation of

IUserStore.getSnapshot

Source

libs/hooks/src/store/user-store.ts:143


login()

login(__namedParameters): Promise<void>

Handles login

Parameters
ParameterType
__namedParametersobject
__namedParameters.checkRegisteredboolean
__namedParameters.providerany
Returns

Promise<void>

Implementation of

IUserStore.login

Source

libs/hooks/src/store/user-store.ts:46


logout()

logout(): void

Handles logout Reset the store to the initial state

Returns

void

Implementation of

IUserStore.logout

Source

libs/hooks/src/store/user-store.ts:77


restoreSession()

restoreSession(): Promise<void>

Initiates session restore for current authenticated user

Returns

Promise<void>

Implementation of

IUserStore.restoreSession

Source

libs/hooks/src/store/user-store.ts:105


subscribe()

subscribe(listener): () => void

Takes a callback function and subscribes it to the store, when the store changes the callback is invoked. This in turns causes a component to re-render

Parameters
ParameterTypeDescription
listener() => voidcallback listener which subscribes to the store
Returns

Function

function that cleans up the subscription

Returns

void

Implementation of

IUserStore.subscribe

Source

libs/hooks/src/store/user-store.ts:135


getInstance()

static getInstance<T>(getProfileInfo): UserStore<T>

Get the singleton instance of the user store

Type parameters
Type parameter
T
Parameters
ParameterType
getProfileInfo(params) => Promise<object>
Returns

UserStore<T>

Source

libs/hooks/src/store/user-store.ts:36

Enumerations

CookieConsentTypes

Enumeration Members

Enumeration MemberValue
ALL"ALL"
ESSENTIAL"ESSENTIAL"

Interfaces

IConfig

Properties

PropertyType
autoRotate?boolean
maxHeightnumber
maxWidthnumber
mimeType?string
quality?number

UseAnalyticsActions

Properties

PropertyType
trackEvent(eventData: object) => void

Type Aliases

CreateAppMutationFn

CreateAppMutationFn: Apollo.MutationFunction<Types.CreateAppMutation, Types.CreateAppMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:2782


CreateAppMutationHookResult

CreateAppMutationHookResult: ReturnType<typeof useCreateAppMutation>

Source

libs/hooks/src/generated/apollo.ts:2805


CreateAppMutationOptions

CreateAppMutationOptions: Apollo.BaseMutationOptions<Types.CreateAppMutation, Types.CreateAppMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:2807


CreateAppMutationResult

CreateAppMutationResult: Apollo.MutationResult<Types.CreateAppMutation>

Source

libs/hooks/src/generated/apollo.ts:2806


CreateBeamMutationFn

CreateBeamMutationFn: Apollo.MutationFunction<Types.CreateBeamMutation, Types.CreateBeamMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:548


CreateBeamMutationHookResult

CreateBeamMutationHookResult: ReturnType<typeof useCreateBeamMutation>

Source

libs/hooks/src/generated/apollo.ts:571


CreateBeamMutationOptions

CreateBeamMutationOptions: Apollo.BaseMutationOptions<Types.CreateBeamMutation, Types.CreateBeamMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:573


CreateBeamMutationResult

CreateBeamMutationResult: Apollo.MutationResult<Types.CreateBeamMutation>

Source

libs/hooks/src/generated/apollo.ts:572


CreateContentBlockMutationFn

CreateContentBlockMutationFn: Apollo.MutationFunction<Types.CreateContentBlockMutation, Types.CreateContentBlockMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:620


CreateContentBlockMutationHookResult

CreateContentBlockMutationHookResult: ReturnType<typeof useCreateContentBlockMutation>

Source

libs/hooks/src/generated/apollo.ts:643


CreateContentBlockMutationOptions

CreateContentBlockMutationOptions: Apollo.BaseMutationOptions<Types.CreateContentBlockMutation, Types.CreateContentBlockMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:645


CreateContentBlockMutationResult

CreateContentBlockMutationResult: Apollo.MutationResult<Types.CreateContentBlockMutation>

Source

libs/hooks/src/generated/apollo.ts:644


CreateFollowMutationFn

CreateFollowMutationFn: Apollo.MutationFunction<Types.CreateFollowMutation, Types.CreateFollowMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1846


CreateFollowMutationHookResult

CreateFollowMutationHookResult: ReturnType<typeof useCreateFollowMutation>

Source

libs/hooks/src/generated/apollo.ts:1869


CreateFollowMutationOptions

CreateFollowMutationOptions: Apollo.BaseMutationOptions<Types.CreateFollowMutation, Types.CreateFollowMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1871


CreateFollowMutationResult

CreateFollowMutationResult: Apollo.MutationResult<Types.CreateFollowMutation>

Source

libs/hooks/src/generated/apollo.ts:1870


CreateInterestsMutationFn

CreateInterestsMutationFn: Apollo.MutationFunction<Types.CreateInterestsMutation, Types.CreateInterestsMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1761


CreateInterestsMutationHookResult

CreateInterestsMutationHookResult: ReturnType<typeof useCreateInterestsMutation>

Source

libs/hooks/src/generated/apollo.ts:1784


CreateInterestsMutationOptions

CreateInterestsMutationOptions: Apollo.BaseMutationOptions<Types.CreateInterestsMutation, Types.CreateInterestsMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1786


CreateInterestsMutationResult

CreateInterestsMutationResult: Apollo.MutationResult<Types.CreateInterestsMutation>

Source

libs/hooks/src/generated/apollo.ts:1785


CreateProfileMutationFn

CreateProfileMutationFn: Apollo.MutationFunction<Types.CreateProfileMutation, Types.CreateProfileMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1682


CreateProfileMutationHookResult

CreateProfileMutationHookResult: ReturnType<typeof useCreateProfileMutation>

Source

libs/hooks/src/generated/apollo.ts:1705


CreateProfileMutationOptions

CreateProfileMutationOptions: Apollo.BaseMutationOptions<Types.CreateProfileMutation, Types.CreateProfileMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1707


CreateProfileMutationResult

CreateProfileMutationResult: Apollo.MutationResult<Types.CreateProfileMutation>

Source

libs/hooks/src/generated/apollo.ts:1706


CreateReflectMutationFn

CreateReflectMutationFn: Apollo.MutationFunction<Types.CreateReflectMutation, Types.CreateReflectMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1255


CreateReflectMutationHookResult

CreateReflectMutationHookResult: ReturnType<typeof useCreateReflectMutation>

Source

libs/hooks/src/generated/apollo.ts:1278


CreateReflectMutationOptions

CreateReflectMutationOptions: Apollo.BaseMutationOptions<Types.CreateReflectMutation, Types.CreateReflectMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1280


CreateReflectMutationResult

CreateReflectMutationResult: Apollo.MutationResult<Types.CreateReflectMutation>

Source

libs/hooks/src/generated/apollo.ts:1279


GetAppReleaseByIdLazyQueryHookResult

GetAppReleaseByIdLazyQueryHookResult: ReturnType<typeof useGetAppReleaseByIdLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:3269


GetAppReleaseByIdQueryHookResult

GetAppReleaseByIdQueryHookResult: ReturnType<typeof useGetAppReleaseByIdQuery>

Source

libs/hooks/src/generated/apollo.ts:3268


GetAppReleaseByIdQueryResult

GetAppReleaseByIdQueryResult: Apollo.QueryResult<Types.GetAppReleaseByIdQuery, Types.GetAppReleaseByIdQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:3271


GetAppReleaseByIdSuspenseQueryHookResult

GetAppReleaseByIdSuspenseQueryHookResult: ReturnType<typeof useGetAppReleaseByIdSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:3270


GetAppsByIdLazyQueryHookResult

GetAppsByIdLazyQueryHookResult: ReturnType<typeof useGetAppsByIdLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:3021


GetAppsByIdQueryHookResult

GetAppsByIdQueryHookResult: ReturnType<typeof useGetAppsByIdQuery>

Source

libs/hooks/src/generated/apollo.ts:3020


GetAppsByIdQueryResult

GetAppsByIdQueryResult: Apollo.QueryResult<Types.GetAppsByIdQuery, Types.GetAppsByIdQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:3023


GetAppsByIdSuspenseQueryHookResult

GetAppsByIdSuspenseQueryHookResult: ReturnType<typeof useGetAppsByIdSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:3022


GetAppsByPublisherDidLazyQueryHookResult

GetAppsByPublisherDidLazyQueryHookResult: ReturnType<typeof useGetAppsByPublisherDidLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:3090


GetAppsByPublisherDidQueryHookResult

GetAppsByPublisherDidQueryHookResult: ReturnType<typeof useGetAppsByPublisherDidQuery>

Source

libs/hooks/src/generated/apollo.ts:3089


GetAppsByPublisherDidQueryResult

GetAppsByPublisherDidQueryResult: Apollo.QueryResult<Types.GetAppsByPublisherDidQuery, Types.GetAppsByPublisherDidQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:3092


GetAppsByPublisherDidSuspenseQueryHookResult

GetAppsByPublisherDidSuspenseQueryHookResult: ReturnType<typeof useGetAppsByPublisherDidSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:3091


GetAppsLazyQueryHookResult

GetAppsLazyQueryHookResult: ReturnType<typeof useGetAppsLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:2906


GetAppsQueryHookResult

GetAppsQueryHookResult: ReturnType<typeof useGetAppsQuery>

Source

libs/hooks/src/generated/apollo.ts:2905


GetAppsQueryResult

GetAppsQueryResult: Apollo.QueryResult<Types.GetAppsQuery, Types.GetAppsQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:2908


GetAppsReleasesByPublisherDidLazyQueryHookResult

GetAppsReleasesByPublisherDidLazyQueryHookResult: ReturnType<typeof useGetAppsReleasesByPublisherDidLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:3160


GetAppsReleasesByPublisherDidQueryHookResult

GetAppsReleasesByPublisherDidQueryHookResult: ReturnType<typeof useGetAppsReleasesByPublisherDidQuery>

Source

libs/hooks/src/generated/apollo.ts:3159


GetAppsReleasesByPublisherDidQueryResult

GetAppsReleasesByPublisherDidQueryResult: Apollo.QueryResult<Types.GetAppsReleasesByPublisherDidQuery, Types.GetAppsReleasesByPublisherDidQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:3162


GetAppsReleasesByPublisherDidSuspenseQueryHookResult

GetAppsReleasesByPublisherDidSuspenseQueryHookResult: ReturnType<typeof useGetAppsReleasesByPublisherDidSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:3161


GetAppsReleasesLazyQueryHookResult

GetAppsReleasesLazyQueryHookResult: ReturnType<typeof useGetAppsReleasesLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:3225


GetAppsReleasesQueryHookResult

GetAppsReleasesQueryHookResult: ReturnType<typeof useGetAppsReleasesQuery>

Source

libs/hooks/src/generated/apollo.ts:3224


GetAppsReleasesQueryResult

GetAppsReleasesQueryResult: Apollo.QueryResult<Types.GetAppsReleasesQuery, Types.GetAppsReleasesQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:3227


GetAppsReleasesSuspenseQueryHookResult

GetAppsReleasesSuspenseQueryHookResult: ReturnType<typeof useGetAppsReleasesSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:3226


GetAppsStreamLazyQueryHookResult

GetAppsStreamLazyQueryHookResult: ReturnType<typeof useGetAppsStreamLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:2978


GetAppsStreamQueryHookResult

GetAppsStreamQueryHookResult: ReturnType<typeof useGetAppsStreamQuery>

Source

libs/hooks/src/generated/apollo.ts:2977


GetAppsStreamQueryResult

GetAppsStreamQueryResult: Apollo.QueryResult<Types.GetAppsStreamQuery, Types.GetAppsStreamQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:2980


GetAppsStreamSuspenseQueryHookResult

GetAppsStreamSuspenseQueryHookResult: ReturnType<typeof useGetAppsStreamSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:2979


GetAppsSuspenseQueryHookResult

GetAppsSuspenseQueryHookResult: ReturnType<typeof useGetAppsSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:2907


GetBeamByIdLazyQueryHookResult

GetBeamByIdLazyQueryHookResult: ReturnType<typeof useGetBeamByIdLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:927


GetBeamByIdQueryHookResult

GetBeamByIdQueryHookResult: ReturnType<typeof useGetBeamByIdQuery>

Source

libs/hooks/src/generated/apollo.ts:926


GetBeamByIdQueryResult

GetBeamByIdQueryResult: Apollo.QueryResult<Types.GetBeamByIdQuery, Types.GetBeamByIdQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:929


GetBeamByIdSuspenseQueryHookResult

GetBeamByIdSuspenseQueryHookResult: ReturnType<typeof useGetBeamByIdSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:928


GetBeamStreamLazyQueryHookResult

GetBeamStreamLazyQueryHookResult: ReturnType<typeof useGetBeamStreamLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:752


GetBeamStreamQueryHookResult

GetBeamStreamQueryHookResult: ReturnType<typeof useGetBeamStreamQuery>

Source

libs/hooks/src/generated/apollo.ts:751


GetBeamStreamQueryResult

GetBeamStreamQueryResult: Apollo.QueryResult<Types.GetBeamStreamQuery, Types.GetBeamStreamQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:754


GetBeamStreamSuspenseQueryHookResult

GetBeamStreamSuspenseQueryHookResult: ReturnType<typeof useGetBeamStreamSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:753


GetBeamsByAuthorDidLazyQueryHookResult

GetBeamsByAuthorDidLazyQueryHookResult: ReturnType<typeof useGetBeamsByAuthorDidLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:885


GetBeamsByAuthorDidQueryHookResult

GetBeamsByAuthorDidQueryHookResult: ReturnType<typeof useGetBeamsByAuthorDidQuery>

Source

libs/hooks/src/generated/apollo.ts:884


GetBeamsByAuthorDidQueryResult

GetBeamsByAuthorDidQueryResult: Apollo.QueryResult<Types.GetBeamsByAuthorDidQuery, Types.GetBeamsByAuthorDidQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:887


GetBeamsByAuthorDidSuspenseQueryHookResult

GetBeamsByAuthorDidSuspenseQueryHookResult: ReturnType<typeof useGetBeamsByAuthorDidSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:886


GetBeamsLazyQueryHookResult

GetBeamsLazyQueryHookResult: ReturnType<typeof useGetBeamsLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:815


GetBeamsQueryHookResult

GetBeamsQueryHookResult: ReturnType<typeof useGetBeamsQuery>

Source

libs/hooks/src/generated/apollo.ts:814


GetBeamsQueryResult

GetBeamsQueryResult: Apollo.QueryResult<Types.GetBeamsQuery, Types.GetBeamsQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:817


GetBeamsSuspenseQueryHookResult

GetBeamsSuspenseQueryHookResult: ReturnType<typeof useGetBeamsSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:816


GetBlockStorageByIdLazyQueryHookResult

GetBlockStorageByIdLazyQueryHookResult: ReturnType<typeof useGetBlockStorageByIdLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:1085


GetBlockStorageByIdQueryHookResult

GetBlockStorageByIdQueryHookResult: ReturnType<typeof useGetBlockStorageByIdQuery>

Source

libs/hooks/src/generated/apollo.ts:1084


GetBlockStorageByIdQueryResult

GetBlockStorageByIdQueryResult: Apollo.QueryResult<Types.GetBlockStorageByIdQuery, Types.GetBlockStorageByIdQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:1087


GetBlockStorageByIdSuspenseQueryHookResult

GetBlockStorageByIdSuspenseQueryHookResult: ReturnType<typeof useGetBlockStorageByIdSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:1086


GetContentBlockByIdLazyQueryHookResult

GetContentBlockByIdLazyQueryHookResult: ReturnType<typeof useGetContentBlockByIdLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:1043


GetContentBlockByIdQueryHookResult

GetContentBlockByIdQueryHookResult: ReturnType<typeof useGetContentBlockByIdQuery>

Source

libs/hooks/src/generated/apollo.ts:1042


GetContentBlockByIdQueryResult

GetContentBlockByIdQueryResult: Apollo.QueryResult<Types.GetContentBlockByIdQuery, Types.GetContentBlockByIdQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:1045


GetContentBlockByIdSuspenseQueryHookResult

GetContentBlockByIdSuspenseQueryHookResult: ReturnType<typeof useGetContentBlockByIdSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:1044


GetContentBlockStreamLazyQueryHookResult

GetContentBlockStreamLazyQueryHookResult: ReturnType<typeof useGetContentBlockStreamLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:1001


GetContentBlockStreamQueryHookResult

GetContentBlockStreamQueryHookResult: ReturnType<typeof useGetContentBlockStreamQuery>

Source

libs/hooks/src/generated/apollo.ts:1000


GetContentBlockStreamQueryResult

GetContentBlockStreamQueryResult: Apollo.QueryResult<Types.GetContentBlockStreamQuery, Types.GetContentBlockStreamQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:1003


GetContentBlockStreamSuspenseQueryHookResult

GetContentBlockStreamSuspenseQueryHookResult: ReturnType<typeof useGetContentBlockStreamSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:1002


GetFollowDocumentsByDidLazyQueryHookResult

GetFollowDocumentsByDidLazyQueryHookResult: ReturnType<typeof useGetFollowDocumentsByDidLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:2026


GetFollowDocumentsByDidQueryHookResult

GetFollowDocumentsByDidQueryHookResult: ReturnType<typeof useGetFollowDocumentsByDidQuery>

Source

libs/hooks/src/generated/apollo.ts:2025


GetFollowDocumentsByDidQueryResult

GetFollowDocumentsByDidQueryResult: Apollo.QueryResult<Types.GetFollowDocumentsByDidQuery, Types.GetFollowDocumentsByDidQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:2028


GetFollowDocumentsByDidSuspenseQueryHookResult

GetFollowDocumentsByDidSuspenseQueryHookResult: ReturnType<typeof useGetFollowDocumentsByDidSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:2027


GetFollowersListByDidLazyQueryHookResult

GetFollowersListByDidLazyQueryHookResult: ReturnType<typeof useGetFollowersListByDidLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:2643


GetFollowersListByDidQueryHookResult

GetFollowersListByDidQueryHookResult: ReturnType<typeof useGetFollowersListByDidQuery>

Source

libs/hooks/src/generated/apollo.ts:2642


GetFollowersListByDidQueryResult

GetFollowersListByDidQueryResult: Apollo.QueryResult<Types.GetFollowersListByDidQuery, Types.GetFollowersListByDidQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:2645


GetFollowersListByDidSuspenseQueryHookResult

GetFollowersListByDidSuspenseQueryHookResult: ReturnType<typeof useGetFollowersListByDidSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:2644


GetFollowingListByDidLazyQueryHookResult

GetFollowingListByDidLazyQueryHookResult: ReturnType<typeof useGetFollowingListByDidLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:2563


GetFollowingListByDidQueryHookResult

GetFollowingListByDidQueryHookResult: ReturnType<typeof useGetFollowingListByDidQuery>

Source

libs/hooks/src/generated/apollo.ts:2562


GetFollowingListByDidQueryResult

GetFollowingListByDidQueryResult: Apollo.QueryResult<Types.GetFollowingListByDidQuery, Types.GetFollowingListByDidQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:2565


GetFollowingListByDidSuspenseQueryHookResult

GetFollowingListByDidSuspenseQueryHookResult: ReturnType<typeof useGetFollowingListByDidSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:2564


GetIndexedStreamCountLazyQueryHookResult

GetIndexedStreamCountLazyQueryHookResult: ReturnType<typeof useGetIndexedStreamCountLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:1206


GetIndexedStreamCountQueryHookResult

GetIndexedStreamCountQueryHookResult: ReturnType<typeof useGetIndexedStreamCountQuery>

Source

libs/hooks/src/generated/apollo.ts:1205


GetIndexedStreamCountQueryResult

GetIndexedStreamCountQueryResult: Apollo.QueryResult<Types.GetIndexedStreamCountQuery, Types.GetIndexedStreamCountQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:1208


GetIndexedStreamCountSuspenseQueryHookResult

GetIndexedStreamCountSuspenseQueryHookResult: ReturnType<typeof useGetIndexedStreamCountSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:1207


GetIndexedStreamLazyQueryHookResult

GetIndexedStreamLazyQueryHookResult: ReturnType<typeof useGetIndexedStreamLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:1162


GetIndexedStreamQueryHookResult

GetIndexedStreamQueryHookResult: ReturnType<typeof useGetIndexedStreamQuery>

Source

libs/hooks/src/generated/apollo.ts:1161


GetIndexedStreamQueryResult

GetIndexedStreamQueryResult: Apollo.QueryResult<Types.GetIndexedStreamQuery, Types.GetIndexedStreamQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:1164


GetIndexedStreamSuspenseQueryHookResult

GetIndexedStreamSuspenseQueryHookResult: ReturnType<typeof useGetIndexedStreamSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:1163


GetInterestsByDidLazyQueryHookResult

GetInterestsByDidLazyQueryHookResult: ReturnType<typeof useGetInterestsByDidLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:2438


GetInterestsByDidQueryHookResult

GetInterestsByDidQueryHookResult: ReturnType<typeof useGetInterestsByDidQuery>

Source

libs/hooks/src/generated/apollo.ts:2437


GetInterestsByDidQueryResult

GetInterestsByDidQueryResult: Apollo.QueryResult<Types.GetInterestsByDidQuery, Types.GetInterestsByDidQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:2440


GetInterestsByDidSuspenseQueryHookResult

GetInterestsByDidSuspenseQueryHookResult: ReturnType<typeof useGetInterestsByDidSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:2439


GetInterestsByIdLazyQueryHookResult

GetInterestsByIdLazyQueryHookResult: ReturnType<typeof useGetInterestsByIdLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:2487


GetInterestsByIdQueryHookResult

GetInterestsByIdQueryHookResult: ReturnType<typeof useGetInterestsByIdQuery>

Source

libs/hooks/src/generated/apollo.ts:2486


GetInterestsByIdQueryResult

GetInterestsByIdQueryResult: Apollo.QueryResult<Types.GetInterestsByIdQuery, Types.GetInterestsByIdQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:2489


GetInterestsByIdSuspenseQueryHookResult

GetInterestsByIdSuspenseQueryHookResult: ReturnType<typeof useGetInterestsByIdSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:2488


GetInterestsLazyQueryHookResult

GetInterestsLazyQueryHookResult: ReturnType<typeof useGetInterestsLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:2314


GetInterestsQueryHookResult

GetInterestsQueryHookResult: ReturnType<typeof useGetInterestsQuery>

Source

libs/hooks/src/generated/apollo.ts:2313


GetInterestsQueryResult

GetInterestsQueryResult: Apollo.QueryResult<Types.GetInterestsQuery, Types.GetInterestsQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:2316


GetInterestsStreamLazyQueryHookResult

GetInterestsStreamLazyQueryHookResult: ReturnType<typeof useGetInterestsStreamLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:2386


GetInterestsStreamQueryHookResult

GetInterestsStreamQueryHookResult: ReturnType<typeof useGetInterestsStreamQuery>

Source

libs/hooks/src/generated/apollo.ts:2385


GetInterestsStreamQueryResult

GetInterestsStreamQueryResult: Apollo.QueryResult<Types.GetInterestsStreamQuery, Types.GetInterestsStreamQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:2388


GetInterestsStreamSuspenseQueryHookResult

GetInterestsStreamSuspenseQueryHookResult: ReturnType<typeof useGetInterestsStreamSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:2387


GetInterestsSuspenseQueryHookResult

GetInterestsSuspenseQueryHookResult: ReturnType<typeof useGetInterestsSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:2315


GetMyProfileLazyQueryHookResult

GetMyProfileLazyQueryHookResult: ReturnType<typeof useGetMyProfileLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:1952


GetMyProfileQueryHookResult

GetMyProfileQueryHookResult: ReturnType<typeof useGetMyProfileQuery>

Source

libs/hooks/src/generated/apollo.ts:1951


GetMyProfileQueryResult

GetMyProfileQueryResult: Apollo.QueryResult<Types.GetMyProfileQuery, Types.GetMyProfileQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:1954


GetMyProfileSuspenseQueryHookResult

GetMyProfileSuspenseQueryHookResult: ReturnType<typeof useGetMyProfileSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:1953


GetProfileByDidLazyQueryHookResult

GetProfileByDidLazyQueryHookResult: ReturnType<typeof useGetProfileByDidLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:2113


GetProfileByDidQueryHookResult

GetProfileByDidQueryHookResult: ReturnType<typeof useGetProfileByDidQuery>

Source

libs/hooks/src/generated/apollo.ts:2112


GetProfileByDidQueryResult

GetProfileByDidQueryResult: Apollo.QueryResult<Types.GetProfileByDidQuery, Types.GetProfileByDidQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:2115


GetProfileByDidSuspenseQueryHookResult

GetProfileByDidSuspenseQueryHookResult: ReturnType<typeof useGetProfileByDidSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:2114


GetProfileByIdLazyQueryHookResult

GetProfileByIdLazyQueryHookResult: ReturnType<typeof useGetProfileByIdLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:2068


GetProfileByIdQueryHookResult

GetProfileByIdQueryHookResult: ReturnType<typeof useGetProfileByIdQuery>

Source

libs/hooks/src/generated/apollo.ts:2067


GetProfileByIdQueryResult

GetProfileByIdQueryResult: Apollo.QueryResult<Types.GetProfileByIdQuery, Types.GetProfileByIdQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:2070


GetProfileByIdSuspenseQueryHookResult

GetProfileByIdSuspenseQueryHookResult: ReturnType<typeof useGetProfileByIdSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:2069


GetProfileStatsByDidLazyQueryHookResult

GetProfileStatsByDidLazyQueryHookResult: ReturnType<typeof useGetProfileStatsByDidLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:2692


GetProfileStatsByDidQueryHookResult

GetProfileStatsByDidQueryHookResult: ReturnType<typeof useGetProfileStatsByDidQuery>

Source

libs/hooks/src/generated/apollo.ts:2691


GetProfileStatsByDidQueryResult

GetProfileStatsByDidQueryResult: Apollo.QueryResult<Types.GetProfileStatsByDidQuery, Types.GetProfileStatsByDidQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:2694


GetProfileStatsByDidSuspenseQueryHookResult

GetProfileStatsByDidSuspenseQueryHookResult: ReturnType<typeof useGetProfileStatsByDidSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:2693


GetProfileStreamLazyQueryHookResult

GetProfileStreamLazyQueryHookResult: ReturnType<typeof useGetProfileStreamLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:2248


GetProfileStreamQueryHookResult

GetProfileStreamQueryHookResult: ReturnType<typeof useGetProfileStreamQuery>

Source

libs/hooks/src/generated/apollo.ts:2247


GetProfileStreamQueryResult

GetProfileStreamQueryResult: Apollo.QueryResult<Types.GetProfileStreamQuery, Types.GetProfileStreamQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:2250


GetProfileStreamSuspenseQueryHookResult

GetProfileStreamSuspenseQueryHookResult: ReturnType<typeof useGetProfileStreamSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:2249


GetProfilesLazyQueryHookResult

GetProfilesLazyQueryHookResult: ReturnType<typeof useGetProfilesLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:2176


GetProfilesQueryHookResult

GetProfilesQueryHookResult: ReturnType<typeof useGetProfilesQuery>

Source

libs/hooks/src/generated/apollo.ts:2175


GetProfilesQueryResult

GetProfilesQueryResult: Apollo.QueryResult<Types.GetProfilesQuery, Types.GetProfilesQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:2178


GetProfilesSuspenseQueryHookResult

GetProfilesSuspenseQueryHookResult: ReturnType<typeof useGetProfilesSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:2177


GetReflectReflectionsLazyQueryHookResult

GetReflectReflectionsLazyQueryHookResult: ReturnType<typeof useGetReflectReflectionsLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:1633


GetReflectReflectionsQueryHookResult

GetReflectReflectionsQueryHookResult: ReturnType<typeof useGetReflectReflectionsQuery>

Source

libs/hooks/src/generated/apollo.ts:1632


GetReflectReflectionsQueryResult

GetReflectReflectionsQueryResult: Apollo.QueryResult<Types.GetReflectReflectionsQuery, Types.GetReflectReflectionsQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:1635


GetReflectReflectionsSuspenseQueryHookResult

GetReflectReflectionsSuspenseQueryHookResult: ReturnType<typeof useGetReflectReflectionsSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:1634


GetReflectionByIdLazyQueryHookResult

GetReflectionByIdLazyQueryHookResult: ReturnType<typeof useGetReflectionByIdLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:1570


GetReflectionByIdQueryHookResult

GetReflectionByIdQueryHookResult: ReturnType<typeof useGetReflectionByIdQuery>

Source

libs/hooks/src/generated/apollo.ts:1569


GetReflectionByIdQueryResult

GetReflectionByIdQueryResult: Apollo.QueryResult<Types.GetReflectionByIdQuery, Types.GetReflectionByIdQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:1572


GetReflectionByIdSuspenseQueryHookResult

GetReflectionByIdSuspenseQueryHookResult: ReturnType<typeof useGetReflectionByIdSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:1571


GetReflectionStreamLazyQueryHookResult

GetReflectionStreamLazyQueryHookResult: ReturnType<typeof useGetReflectionStreamLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:1528


GetReflectionStreamQueryHookResult

GetReflectionStreamQueryHookResult: ReturnType<typeof useGetReflectionStreamQuery>

Source

libs/hooks/src/generated/apollo.ts:1527


GetReflectionStreamQueryResult

GetReflectionStreamQueryResult: Apollo.QueryResult<Types.GetReflectionStreamQuery, Types.GetReflectionStreamQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:1530


GetReflectionStreamSuspenseQueryHookResult

GetReflectionStreamSuspenseQueryHookResult: ReturnType<typeof useGetReflectionStreamSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:1529


GetReflectionsByAuthorDidLazyQueryHookResult

GetReflectionsByAuthorDidLazyQueryHookResult: ReturnType<typeof useGetReflectionsByAuthorDidLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:1452


GetReflectionsByAuthorDidQueryHookResult

GetReflectionsByAuthorDidQueryHookResult: ReturnType<typeof useGetReflectionsByAuthorDidQuery>

Source

libs/hooks/src/generated/apollo.ts:1451


GetReflectionsByAuthorDidQueryResult

GetReflectionsByAuthorDidQueryResult: Apollo.QueryResult<Types.GetReflectionsByAuthorDidQuery, Types.GetReflectionsByAuthorDidQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:1454


GetReflectionsByAuthorDidSuspenseQueryHookResult

GetReflectionsByAuthorDidSuspenseQueryHookResult: ReturnType<typeof useGetReflectionsByAuthorDidSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:1453


GetReflectionsFromBeamLazyQueryHookResult

GetReflectionsFromBeamLazyQueryHookResult: ReturnType<typeof useGetReflectionsFromBeamLazyQuery>

Source

libs/hooks/src/generated/apollo.ts:1383


GetReflectionsFromBeamQueryHookResult

GetReflectionsFromBeamQueryHookResult: ReturnType<typeof useGetReflectionsFromBeamQuery>

Source

libs/hooks/src/generated/apollo.ts:1382


GetReflectionsFromBeamQueryResult

GetReflectionsFromBeamQueryResult: Apollo.QueryResult<Types.GetReflectionsFromBeamQuery, Types.GetReflectionsFromBeamQueryVariables>

Source

libs/hooks/src/generated/apollo.ts:1385


GetReflectionsFromBeamSuspenseQueryHookResult

GetReflectionsFromBeamSuspenseQueryHookResult: ReturnType<typeof useGetReflectionsFromBeamSuspenseQuery>

Source

libs/hooks/src/generated/apollo.ts:1384


IndexBeamMutationFn

IndexBeamMutationFn: Apollo.MutationFunction<Types.IndexBeamMutation, Types.IndexBeamMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:475


IndexBeamMutationHookResult

IndexBeamMutationHookResult: ReturnType<typeof useIndexBeamMutation>

Source

libs/hooks/src/generated/apollo.ts:499


IndexBeamMutationOptions

IndexBeamMutationOptions: Apollo.BaseMutationOptions<Types.IndexBeamMutation, Types.IndexBeamMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:501


IndexBeamMutationResult

IndexBeamMutationResult: Apollo.MutationResult<Types.IndexBeamMutation>

Source

libs/hooks/src/generated/apollo.ts:500


IndexContentBlockMutationFn

IndexContentBlockMutationFn: Apollo.MutationFunction<Types.IndexContentBlockMutation, Types.IndexContentBlockMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:511


IndexContentBlockMutationHookResult

IndexContentBlockMutationHookResult: ReturnType<typeof useIndexContentBlockMutation>

Source

libs/hooks/src/generated/apollo.ts:535


IndexContentBlockMutationOptions

IndexContentBlockMutationOptions: Apollo.BaseMutationOptions<Types.IndexContentBlockMutation, Types.IndexContentBlockMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:537


IndexContentBlockMutationResult

IndexContentBlockMutationResult: Apollo.MutationResult<Types.IndexContentBlockMutation>

Source

libs/hooks/src/generated/apollo.ts:536


IndexProfileMutationFn

IndexProfileMutationFn: Apollo.MutationFunction<Types.IndexProfileMutation, Types.IndexProfileMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1645


IndexProfileMutationHookResult

IndexProfileMutationHookResult: ReturnType<typeof useIndexProfileMutation>

Source

libs/hooks/src/generated/apollo.ts:1669


IndexProfileMutationOptions

IndexProfileMutationOptions: Apollo.BaseMutationOptions<Types.IndexProfileMutation, Types.IndexProfileMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1671


IndexProfileMutationResult

IndexProfileMutationResult: Apollo.MutationResult<Types.IndexProfileMutation>

Source

libs/hooks/src/generated/apollo.ts:1670


IndexReflectionMutationFn

IndexReflectionMutationFn: Apollo.MutationFunction<Types.IndexReflectionMutation, Types.IndexReflectionMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1218


IndexReflectionMutationHookResult

IndexReflectionMutationHookResult: ReturnType<typeof useIndexReflectionMutation>

Source

libs/hooks/src/generated/apollo.ts:1242


IndexReflectionMutationOptions

IndexReflectionMutationOptions: Apollo.BaseMutationOptions<Types.IndexReflectionMutation, Types.IndexReflectionMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1244


IndexReflectionMutationResult

IndexReflectionMutationResult: Apollo.MutationResult<Types.IndexReflectionMutation>

Source

libs/hooks/src/generated/apollo.ts:1243


SetAppReleaseMutationFn

SetAppReleaseMutationFn: Apollo.MutationFunction<Types.SetAppReleaseMutation, Types.SetAppReleaseMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:2707


SetAppReleaseMutationHookResult

SetAppReleaseMutationHookResult: ReturnType<typeof useSetAppReleaseMutation>

Source

libs/hooks/src/generated/apollo.ts:2730


SetAppReleaseMutationOptions

SetAppReleaseMutationOptions: Apollo.BaseMutationOptions<Types.SetAppReleaseMutation, Types.SetAppReleaseMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:2732


SetAppReleaseMutationResult

SetAppReleaseMutationResult: Apollo.MutationResult<Types.SetAppReleaseMutation>

Source

libs/hooks/src/generated/apollo.ts:2731


UpdateAkashaReflectMutationFn

UpdateAkashaReflectMutationFn: Apollo.MutationFunction<Types.UpdateAkashaReflectMutation, Types.UpdateAkashaReflectMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1291


UpdateAkashaReflectMutationHookResult

UpdateAkashaReflectMutationHookResult: ReturnType<typeof useUpdateAkashaReflectMutation>

Source

libs/hooks/src/generated/apollo.ts:1314


UpdateAkashaReflectMutationOptions

UpdateAkashaReflectMutationOptions: Apollo.BaseMutationOptions<Types.UpdateAkashaReflectMutation, Types.UpdateAkashaReflectMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1316


UpdateAkashaReflectMutationResult

UpdateAkashaReflectMutationResult: Apollo.MutationResult<Types.UpdateAkashaReflectMutation>

Source

libs/hooks/src/generated/apollo.ts:1315


UpdateAppMutationFn

UpdateAppMutationFn: Apollo.MutationFunction<Types.UpdateAppMutation, Types.UpdateAppMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:2819


UpdateAppMutationHookResult

UpdateAppMutationHookResult: ReturnType<typeof useUpdateAppMutation>

Source

libs/hooks/src/generated/apollo.ts:2842


UpdateAppMutationOptions

UpdateAppMutationOptions: Apollo.BaseMutationOptions<Types.UpdateAppMutation, Types.UpdateAppMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:2844


UpdateAppMutationResult

UpdateAppMutationResult: Apollo.MutationResult<Types.UpdateAppMutation>

Source

libs/hooks/src/generated/apollo.ts:2843


UpdateAppReleaseMutationFn

UpdateAppReleaseMutationFn: Apollo.MutationFunction<Types.UpdateAppReleaseMutation, Types.UpdateAppReleaseMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:2745


UpdateAppReleaseMutationHookResult

UpdateAppReleaseMutationHookResult: ReturnType<typeof useUpdateAppReleaseMutation>

Source

libs/hooks/src/generated/apollo.ts:2768


UpdateAppReleaseMutationOptions

UpdateAppReleaseMutationOptions: Apollo.BaseMutationOptions<Types.UpdateAppReleaseMutation, Types.UpdateAppReleaseMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:2770


UpdateAppReleaseMutationResult

UpdateAppReleaseMutationResult: Apollo.MutationResult<Types.UpdateAppReleaseMutation>

Source

libs/hooks/src/generated/apollo.ts:2769


UpdateBeamMutationFn

UpdateBeamMutationFn: Apollo.MutationFunction<Types.UpdateBeamMutation, Types.UpdateBeamMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:584


UpdateBeamMutationHookResult

UpdateBeamMutationHookResult: ReturnType<typeof useUpdateBeamMutation>

Source

libs/hooks/src/generated/apollo.ts:607


UpdateBeamMutationOptions

UpdateBeamMutationOptions: Apollo.BaseMutationOptions<Types.UpdateBeamMutation, Types.UpdateBeamMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:609


UpdateBeamMutationResult

UpdateBeamMutationResult: Apollo.MutationResult<Types.UpdateBeamMutation>

Source

libs/hooks/src/generated/apollo.ts:608


UpdateContentBlockMutationFn

UpdateContentBlockMutationFn: Apollo.MutationFunction<Types.UpdateContentBlockMutation, Types.UpdateContentBlockMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:656


UpdateContentBlockMutationHookResult

UpdateContentBlockMutationHookResult: ReturnType<typeof useUpdateContentBlockMutation>

Source

libs/hooks/src/generated/apollo.ts:679


UpdateContentBlockMutationOptions

UpdateContentBlockMutationOptions: Apollo.BaseMutationOptions<Types.UpdateContentBlockMutation, Types.UpdateContentBlockMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:681


UpdateContentBlockMutationResult

UpdateContentBlockMutationResult: Apollo.MutationResult<Types.UpdateContentBlockMutation>

Source

libs/hooks/src/generated/apollo.ts:680


UpdateFollowMutationFn

UpdateFollowMutationFn: Apollo.MutationFunction<Types.UpdateFollowMutation, Types.UpdateFollowMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1888


UpdateFollowMutationHookResult

UpdateFollowMutationHookResult: ReturnType<typeof useUpdateFollowMutation>

Source

libs/hooks/src/generated/apollo.ts:1911


UpdateFollowMutationOptions

UpdateFollowMutationOptions: Apollo.BaseMutationOptions<Types.UpdateFollowMutation, Types.UpdateFollowMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1913


UpdateFollowMutationResult

UpdateFollowMutationResult: Apollo.MutationResult<Types.UpdateFollowMutation>

Source

libs/hooks/src/generated/apollo.ts:1912


UpdateInterestsMutationFn

UpdateInterestsMutationFn: Apollo.MutationFunction<Types.UpdateInterestsMutation, Types.UpdateInterestsMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1804


UpdateInterestsMutationHookResult

UpdateInterestsMutationHookResult: ReturnType<typeof useUpdateInterestsMutation>

Source

libs/hooks/src/generated/apollo.ts:1827


UpdateInterestsMutationOptions

UpdateInterestsMutationOptions: Apollo.BaseMutationOptions<Types.UpdateInterestsMutation, Types.UpdateInterestsMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1829


UpdateInterestsMutationResult

UpdateInterestsMutationResult: Apollo.MutationResult<Types.UpdateInterestsMutation>

Source

libs/hooks/src/generated/apollo.ts:1828


UpdateProfileMutationFn

UpdateProfileMutationFn: Apollo.MutationFunction<Types.UpdateProfileMutation, Types.UpdateProfileMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1718


UpdateProfileMutationHookResult

UpdateProfileMutationHookResult: ReturnType<typeof useUpdateProfileMutation>

Source

libs/hooks/src/generated/apollo.ts:1741


UpdateProfileMutationOptions

UpdateProfileMutationOptions: Apollo.BaseMutationOptions<Types.UpdateProfileMutation, Types.UpdateProfileMutationVariables>

Source

libs/hooks/src/generated/apollo.ts:1743


UpdateProfileMutationResult

UpdateProfileMutationResult: Apollo.MutationResult<Types.UpdateProfileMutation>

Source

libs/hooks/src/generated/apollo.ts:1742

Variables

AkashaAppFragmentDoc

const AkashaAppFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:401


AkashaAppFragmentMFragmentDoc

const AkashaAppFragmentMFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:303


AppReleaseFragmentDoc

const AppReleaseFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:454


AppReleaseFragmentMFragmentDoc

const AppReleaseFragmentMFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:340


BeamFragmentDoc

const BeamFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:83


BeamFragmentMFragmentDoc

const BeamFragmentMFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:16


BlockStorageFragmentDoc

const BlockStorageFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:153


Internal

const COOKIE_CONSENT_NAME: "ewa-cookie-consent" = 'ewa-cookie-consent'

Source

libs/hooks/src/use-analytics.tsx:12


ContentBlockFragmentDoc

const ContentBlockFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:123


ContentBlockFragmentMFragmentDoc

const ContentBlockFragmentMFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:53


CreateAppDocument

const CreateAppDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2771


CreateBeamDocument

const CreateBeamDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:538


CreateContentBlockDocument

const CreateContentBlockDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:610


CreateFollowDocument

const CreateFollowDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1830


CreateInterestsDocument

const CreateInterestsDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1744


CreateProfileDocument

const CreateProfileDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1672


CreateReflectDocument

const CreateReflectDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1245


GetAppReleaseByIdDocument

const GetAppReleaseByIdDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:3228


GetAppsByIdDocument

const GetAppsByIdDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2981


GetAppsByPublisherDidDocument

const GetAppsByPublisherDidDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:3024


GetAppsDocument

const GetAppsDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2845


GetAppsReleasesByPublisherDidDocument

const GetAppsReleasesByPublisherDidDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:3093


GetAppsReleasesDocument

const GetAppsReleasesDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:3163


GetAppsStreamDocument

const GetAppsStreamDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2909


GetBeamByIdDocument

const GetBeamByIdDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:888


GetBeamStreamDocument

const GetBeamStreamDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:682


GetBeamsByAuthorDidDocument

const GetBeamsByAuthorDidDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:818


GetBeamsDocument

const GetBeamsDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:755


GetBlockStorageByIdDocument

const GetBlockStorageByIdDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1046


GetContentBlockByIdDocument

const GetContentBlockByIdDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1004


GetContentBlockStreamDocument

const GetContentBlockStreamDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:930


GetFollowDocumentsByDidDocument

const GetFollowDocumentsByDidDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1955


GetFollowersListByDidDocument

const GetFollowersListByDidDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2566


GetFollowingListByDidDocument

const GetFollowingListByDidDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2490


GetIndexedStreamCountDocument

const GetIndexedStreamCountDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1165


GetIndexedStreamDocument

const GetIndexedStreamDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1088


GetInterestsByDidDocument

const GetInterestsByDidDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2389


GetInterestsByIdDocument

const GetInterestsByIdDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2441


GetInterestsDocument

const GetInterestsDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2251


GetInterestsStreamDocument

const GetInterestsStreamDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2317


GetMyProfileDocument

const GetMyProfileDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1914


GetProfileByDidDocument

const GetProfileByDidDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2071


GetProfileByIdDocument

const GetProfileByIdDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2029


GetProfileStatsByDidDocument

const GetProfileStatsByDidDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2646


GetProfileStreamDocument

const GetProfileStreamDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2179


GetProfilesDocument

const GetProfilesDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2116


GetReflectReflectionsDocument

const GetReflectReflectionsDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1573


GetReflectionByIdDocument

const GetReflectionByIdDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1531


GetReflectionStreamDocument

const GetReflectionStreamDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1455


GetReflectionsByAuthorDidDocument

const GetReflectionsByAuthorDidDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1386


GetReflectionsFromBeamDocument

const GetReflectionsFromBeamDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1317


IndexBeamDocument

const IndexBeamDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:466


IndexContentBlockDocument

const IndexContentBlockDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:502


IndexProfileDocument

const IndexProfileDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1636


IndexReflectionDocument

const IndexReflectionDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1209


IndexedBeamFragmentDoc

const IndexedBeamFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:6


IndexedContentBlockFragmentDoc

const IndexedContentBlockFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:11


IndexedProfileFragmentDoc

const IndexedProfileFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:249


IndexedReflectFragmentDoc

const IndexedReflectFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:190


ReflectFragmentDoc

const ReflectFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:222


ReflectFragmentMFragmentDoc

const ReflectFragmentMFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:195


SetAppReleaseDocument

const SetAppReleaseDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2695


UpdateAkashaReflectDocument

const UpdateAkashaReflectDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1281


UpdateAppDocument

const UpdateAppDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2808


UpdateAppReleaseDocument

const UpdateAppReleaseDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:2733


UpdateBeamDocument

const UpdateBeamDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:574


UpdateContentBlockDocument

const UpdateContentBlockDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:646


UpdateFollowDocument

const UpdateFollowDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1872


UpdateInterestsDocument

const UpdateInterestsDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1787


UpdateProfileDocument

const UpdateProfileDocument: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:1708


UserProfileFragmentDoc

const UserProfileFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:352


UserProfileFragmentMFragmentDoc

const UserProfileFragmentMFragmentDoc: DocumentNode

Source

libs/hooks/src/generated/apollo.ts:254