@@ -14,14 +14,14 @@ import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/
14
14
*/
15
15
const documents = {
16
16
"\n fragment RemoteServerFields on RemoteServer {\n id\n createdAt\n foreignDataWrapperId\n foreignDataWrapperOptions\n foreignDataWrapperType\n userMappingOptions {\n user\n }\n updatedAt\n schema\n }\n" : types . RemoteServerFieldsFragmentDoc ,
17
- "\n fragment RemoteTableFields on RemoteTable {\n id\n name\n schema\n status\n }\n" : types . RemoteTableFieldsFragmentDoc ,
17
+ "\n fragment RemoteTableFields on RemoteTable {\n id\n name\n schema\n status\n schemaPendingUpdates\n }\n" : types . RemoteTableFieldsFragmentDoc ,
18
18
"\n \n mutation createServer($input: CreateRemoteServerInput!) {\n createOneRemoteServer(input: $input) {\n ...RemoteServerFields\n }\n }\n" : types . CreateServerDocument ,
19
19
"\n mutation deleteServer($input: RemoteServerIdInput!) {\n deleteOneRemoteServer(input: $input) {\n id\n }\n }\n" : types . DeleteServerDocument ,
20
20
"\n \n mutation syncRemoteTable($input: RemoteTableInput!) {\n syncRemoteTable(input: $input) {\n ...RemoteTableFields\n }\n }\n" : types . SyncRemoteTableDocument ,
21
21
"\n \n mutation unsyncRemoteTable($input: RemoteTableInput!) {\n unsyncRemoteTable(input: $input) {\n ...RemoteTableFields\n }\n }\n" : types . UnsyncRemoteTableDocument ,
22
22
"\n \n mutation updateServer($input: UpdateRemoteServerInput!) {\n updateOneRemoteServer(input: $input) {\n ...RemoteServerFields\n }\n }\n" : types . UpdateServerDocument ,
23
23
"\n \n query GetManyDatabaseConnections($input: RemoteServerTypeInput!) {\n findManyRemoteServersByType(input: $input) {\n ...RemoteServerFields\n }\n }\n" : types . GetManyDatabaseConnectionsDocument ,
24
- "\n \n query GetManyRemoteTables($input: RemoteServerIdInput !) {\n findAvailableRemoteTablesByServerId(input: $input) {\n ...RemoteTableFields\n }\n }\n" : types . GetManyRemoteTablesDocument ,
24
+ "\n \n query GetManyRemoteTables($input: FindManyRemoteTablesInput !) {\n findAvailableRemoteTablesByServerId(input: $input) {\n ...RemoteTableFields\n }\n }\n" : types . GetManyRemoteTablesDocument ,
25
25
"\n \n query GetOneDatabaseConnection($input: RemoteServerIdInput!) {\n findOneRemoteServerById(input: $input) {\n ...RemoteServerFields\n }\n }\n" : types . GetOneDatabaseConnectionDocument ,
26
26
"\n mutation CreateOneObjectMetadataItem($input: CreateOneObjectInput!) {\n createOneObject(input: $input) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n" : types . CreateOneObjectMetadataItemDocument ,
27
27
"\n mutation CreateOneFieldMetadataItem($input: CreateOneFieldMetadataInput!) {\n createOneField(input: $input) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n defaultValue\n options\n }\n }\n" : types . CreateOneFieldMetadataItemDocument ,
@@ -55,7 +55,7 @@ export function graphql(source: "\n fragment RemoteServerFields on RemoteServer
55
55
/**
56
56
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
57
57
*/
58
- export function graphql ( source : "\n fragment RemoteTableFields on RemoteTable {\n id\n name\n schema\n status\n }\n" ) : ( typeof documents ) [ "\n fragment RemoteTableFields on RemoteTable {\n id\n name\n schema\n status\n }\n" ] ;
58
+ export function graphql ( source : "\n fragment RemoteTableFields on RemoteTable {\n id\n name\n schema\n status\n schemaPendingUpdates\n }\n" ) : ( typeof documents ) [ "\n fragment RemoteTableFields on RemoteTable {\n id\n name\n schema\n status\n schemaPendingUpdates \n }\n" ] ;
59
59
/**
60
60
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
61
61
*/
@@ -83,7 +83,7 @@ export function graphql(source: "\n \n query GetManyDatabaseConnections($input
83
83
/**
84
84
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
85
85
*/
86
- export function graphql ( source : "\n \n query GetManyRemoteTables($input: RemoteServerIdInput !) {\n findAvailableRemoteTablesByServerId(input: $input) {\n ...RemoteTableFields\n }\n }\n" ) : ( typeof documents ) [ "\n \n query GetManyRemoteTables($input: RemoteServerIdInput !) {\n findAvailableRemoteTablesByServerId(input: $input) {\n ...RemoteTableFields\n }\n }\n" ] ;
86
+ export function graphql ( source : "\n \n query GetManyRemoteTables($input: FindManyRemoteTablesInput !) {\n findAvailableRemoteTablesByServerId(input: $input) {\n ...RemoteTableFields\n }\n }\n" ) : ( typeof documents ) [ "\n \n query GetManyRemoteTables($input: FindManyRemoteTablesInput !) {\n findAvailableRemoteTablesByServerId(input: $input) {\n ...RemoteTableFields\n }\n }\n" ] ;
87
87
/**
88
88
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
89
89
*/
0 commit comments