mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
console: support mssql views in console
GitOrigin-RevId: 52474d57f233e0d79911ae0c1d98b5c595d5d7e4
This commit is contained in:
parent
c35e4a26b6
commit
5778fe3e9b
@ -183,7 +183,7 @@ FROM sys.objects as obj
|
||||
JOIN sys.types t ON a.user_type_id = t.user_type_id
|
||||
WHERE a.column_id > 0 and a.object_id = obj.object_id
|
||||
FOR JSON path
|
||||
) AS [isc](json) where obj.type_desc in ('USER_TABLE') ${whereClause};`;
|
||||
) AS [isc](json) where obj.type_desc in ('USER_TABLE', 'VIEW') ${whereClause};`;
|
||||
},
|
||||
commonDataTypes: [],
|
||||
fetchColumnTypesQuery: '',
|
||||
|
Loading…
Reference in New Issue
Block a user