ebb1aa0377
Added label on remote server entity. Also added the possibility to update schema. <img width="688" alt="Capture d’écran 2024-05-28 à 15 36 31" src="https://github.com/twentyhq/twenty/assets/22936103/c9786122-8459-4876-833e-c9a1d7d27829">
18 lines
323 B
TypeScript
18 lines
323 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const DATABASE_CONNECTION_FRAGMENT = gql`
|
|
fragment RemoteServerFields on RemoteServer {
|
|
id
|
|
createdAt
|
|
foreignDataWrapperId
|
|
foreignDataWrapperOptions
|
|
foreignDataWrapperType
|
|
userMappingOptions {
|
|
user
|
|
}
|
|
updatedAt
|
|
schema
|
|
label
|
|
}
|
|
`;
|