console: enable mssql for db-to-remoteDb and RS-to-DB relationships

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4243
GitOrigin-RevId: fe0f7e5d8f562ec0fae5204facd289f6a32346a5
This commit is contained in:
Abhijeet Khangarot 2022-04-11 19:30:14 +05:30 committed by hasura-bot
parent d10b862b61
commit 99878d9c00
3 changed files with 4 additions and 3 deletions

View File

@ -14,6 +14,7 @@
- console: add RS-to-DB (only postgres & citus) relationships feature to remote schemas tab
- console: remove need for clicking the Modify btn before editing a remote schema (#1193, #8262)
- console: integrate the RS-to-RS form into Remote Schema Relationship tab
- console: enable mssql server as an option in RS-to-DB and DB-to-DB remote joins
- cli: fix remote schema metadata formatting issues (#7608)
- cli: fix query collections metadata formatting issues (#7616)
- docs: support for `graphql-ws` is considered GA

View File

@ -172,8 +172,8 @@ export const supportedFeatures: DeepRequired<SupportedFeaturesType> = {
enabled: true,
track: true,
remoteDbRelationships: {
hostSource: false,
referenceSource: false,
hostSource: true,
referenceSource: true,
},
remoteRelationships: false,
},

View File

@ -20,7 +20,7 @@ const useLoadData = (sources?: MetadataDataSource[]) => {
const sourceOptions = React.useMemo(() => {
return (
sources
?.filter(s => !['bigquery', 'mssql'].includes(s.kind))
?.filter(s => !['bigquery'].includes(s.kind))
.map(({ name }) => ({ value: name, label: name })) || []
);
}, [sources]);