Map Firebase Data Connect (FDC) schema to custom postgres schema (not PUBLIC)
Currently, any gql files placed in schema folder generate one FDC schema in FDC console, which generates associated tables in postgres PUBLIC schema. Putting tables there is not ideal.
It would be nice if creating additional subfolders within schema source folder (or some other mechanism) could allow mapping to developer defined postgres schemas other than PUBLIC. For example, the following folder structure:
schema/appname/*.gql
would map to APPNAME schema in Postgres and tables would be created there.
1
vote