@@ -1386,11 +1386,6 @@ export type InsightProductQueryVariables = Exact<{
1386
1386
1387
1387
export type InsightProductQuery = { __typename ?: 'Query' , insightProduct : { __typename ?: 'InsightProduct' , id : string , name : string , description : string , created : any , lastModified ?: any | null , type : string , link : string , keywords : Array < string > , group : string , teamkatalogenURL ?: string | null , productAreaID ?: string | null , teamID ?: string | null } } ;
1388
1388
1389
- export type KeywordsQueryVariables = Exact < { [ key : string ] : never ; } > ;
1390
-
1391
-
1392
- export type KeywordsQuery = { __typename ?: 'Query' , keywords : Array < { __typename ?: 'Keyword' , keyword : string , count : number } > } ;
1393
-
1394
1389
export type UpdateKeywordsMutationVariables = Exact < {
1395
1390
input : UpdateKeywords ;
1396
1391
} > ;
@@ -2579,46 +2574,6 @@ export type InsightProductQueryHookResult = ReturnType<typeof useInsightProductQ
2579
2574
export type InsightProductLazyQueryHookResult = ReturnType < typeof useInsightProductLazyQuery > ;
2580
2575
export type InsightProductSuspenseQueryHookResult = ReturnType < typeof useInsightProductSuspenseQuery > ;
2581
2576
export type InsightProductQueryResult = Apollo . QueryResult < InsightProductQuery , InsightProductQueryVariables > ;
2582
- export const KeywordsDocument = gql `
2583
- query Keywords {
2584
- keywords {
2585
- keyword
2586
- count
2587
- }
2588
- }
2589
- ` ;
2590
-
2591
- /**
2592
- * __useKeywordsQuery__
2593
- *
2594
- * To run a query within a React component, call `useKeywordsQuery` and pass it any options that fit your needs.
2595
- * When your component renders, `useKeywordsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2596
- * you can use to render your UI.
2597
- *
2598
- * @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;
2599
- *
2600
- * @example
2601
- * const { data, loading, error } = useKeywordsQuery({
2602
- * variables: {
2603
- * },
2604
- * });
2605
- */
2606
- export function useKeywordsQuery ( baseOptions ?: Apollo . QueryHookOptions < KeywordsQuery , KeywordsQueryVariables > ) {
2607
- const options = { ...defaultOptions , ...baseOptions }
2608
- return Apollo . useQuery < KeywordsQuery , KeywordsQueryVariables > ( KeywordsDocument , options ) ;
2609
- }
2610
- export function useKeywordsLazyQuery ( baseOptions ?: Apollo . LazyQueryHookOptions < KeywordsQuery , KeywordsQueryVariables > ) {
2611
- const options = { ...defaultOptions , ...baseOptions }
2612
- return Apollo . useLazyQuery < KeywordsQuery , KeywordsQueryVariables > ( KeywordsDocument , options ) ;
2613
- }
2614
- export function useKeywordsSuspenseQuery ( baseOptions ?: Apollo . SuspenseQueryHookOptions < KeywordsQuery , KeywordsQueryVariables > ) {
2615
- const options = { ...defaultOptions , ...baseOptions }
2616
- return Apollo . useSuspenseQuery < KeywordsQuery , KeywordsQueryVariables > ( KeywordsDocument , options ) ;
2617
- }
2618
- export type KeywordsQueryHookResult = ReturnType < typeof useKeywordsQuery > ;
2619
- export type KeywordsLazyQueryHookResult = ReturnType < typeof useKeywordsLazyQuery > ;
2620
- export type KeywordsSuspenseQueryHookResult = ReturnType < typeof useKeywordsSuspenseQuery > ;
2621
- export type KeywordsQueryResult = Apollo . QueryResult < KeywordsQuery , KeywordsQueryVariables > ;
2622
2577
export const UpdateKeywordsDocument = gql `
2623
2578
mutation updateKeywords($input: UpdateKeywords!) {
2624
2579
updateKeywords(input: $input)
0 commit comments