You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
export type SignupInviteMutationVariables = Exact<{
5525
5537
attributes: UserAttributes;
5526
5538
inviteId: Scalars['String']['input'];
@@ -8610,6 +8622,78 @@ export type GroupsQueryHookResult = ReturnType<typeof useGroupsQuery>;
8610
8622
export type GroupsLazyQueryHookResult = ReturnType<typeof useGroupsLazyQuery>;
8611
8623
export type GroupsSuspenseQueryHookResult = ReturnType<typeof useGroupsSuspenseQuery>;
8612
8624
export type GroupsQueryResult = Apollo.QueryResult<GroupsQuery, GroupsQueryVariables>;
8625
+
export const OauthIntegrationsDocument = gql`
8626
+
query OauthIntegrations {
8627
+
oauthIntegrations {
8628
+
...OauthIntegration
8629
+
}
8630
+
}
8631
+
${OauthIntegrationFragmentDoc}`;
8632
+
8633
+
/**
8634
+
* __useOauthIntegrationsQuery__
8635
+
*
8636
+
* To run a query within a React component, call `useOauthIntegrationsQuery` and pass it any options that fit your needs.
8637
+
* When your component renders, `useOauthIntegrationsQuery` returns an object from Apollo Client that contains loading, error, and data properties
8638
+
* you can use to render your UI.
8639
+
*
8640
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
export type CreateOauthIntegrationMutationFn = Apollo.MutationFunction<CreateOauthIntegrationMutation, CreateOauthIntegrationMutationVariables>;
8672
+
8673
+
/**
8674
+
* __useCreateOauthIntegrationMutation__
8675
+
*
8676
+
* To run a mutation, you first call `useCreateOauthIntegrationMutation` within a React component and pass it any options that fit your needs.
8677
+
* When your component renders, `useCreateOauthIntegrationMutation` returns a tuple that includes:
8678
+
* - A mutate function that you can call at any time to execute the mutation
8679
+
* - An object with fields that represent the current status of the mutation's execution
8680
+
*
8681
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
0 commit comments