Skip to content

Commit 7973bf5

Browse files
committed
regen the resolvers + graphql
1 parent f578a13 commit 7973bf5

File tree

4 files changed

+140
-57
lines changed

4 files changed

+140
-57
lines changed

core/graph/generated.go

Lines changed: 135 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/graph/model/models_gen.go

Lines changed: 0 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/graph/schema.resolvers.go

Lines changed: 1 addition & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/src/generated/graphql.tsx

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
/*
2-
* Copyright 2025 Clidey, Inc.
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
6-
* You may obtain a copy of the License at
7-
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
* See the License for the specific language governing permissions and
14-
* limitations under the License.
15-
*/
16-
171
import { gql } from '@apollo/client';
182
import * as Apollo from '@apollo/client';
193
export type Maybe<T> = T | null;
@@ -299,7 +283,7 @@ export enum WhereConditionType {
299283
export type GetProfilesQueryVariables = Exact<{ [key: string]: never; }>;
300284

301285

302-
export type GetProfilesQuery = { __typename?: 'Query', Profiles: Array<{ __typename?: 'LoginProfile', Alias?: string | null, Id: string, Type: DatabaseType, Database?: string | null }> };
286+
export type GetProfilesQuery = { __typename?: 'Query', Profiles: Array<{ __typename?: 'LoginProfile', Alias?: string | null, Id: string, Type: DatabaseType, Database?: string | null, IsEnvironmentDefined: boolean }> };
303287

304288
export type GetSchemaQueryVariables = Exact<{ [key: string]: never; }>;
305289

@@ -340,7 +324,7 @@ export type LogoutMutation = { __typename?: 'Mutation', Logout: { __typename?: '
340324
export type GetAiProvidersQueryVariables = Exact<{ [key: string]: never; }>;
341325

342326

343-
export type GetAiProvidersQuery = { __typename?: 'Query', AIProviders: Array<{ __typename?: 'AIProvider', Type: string, ProviderId: string }> };
327+
export type GetAiProvidersQuery = { __typename?: 'Query', AIProviders: Array<{ __typename?: 'AIProvider', Type: string, ProviderId: string, IsEnvironmentDefined: boolean }> };
344328

345329
export type GetAiChatQueryVariables = Exact<{
346330
providerId?: InputMaybe<Scalars['String']['input']>;
@@ -453,6 +437,7 @@ export const GetProfilesDocument = gql`
453437
Id
454438
Type
455439
Database
440+
IsEnvironmentDefined
456441
}
457442
}
458443
`;
@@ -703,6 +688,7 @@ export const GetAiProvidersDocument = gql`
703688
AIProviders {
704689
Type
705690
ProviderId
691+
IsEnvironmentDefined
706692
}
707693
}
708694
`;

0 commit comments

Comments
 (0)