You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, a domain created as a data type defined in pg_catalog returns the name of the base type. No problem there, since:
createdomainmydomainasint;
will be shown in OpenAPI as an integer. The problem starts when the domain is created as a custom type or as another domain. Then, postgrest-openapi treats it as a string instead of the schema defined by the base type.
The text was updated successfully, but these errors were encountered:
Right now, a domain created as a data type defined in
pg_catalog
returns the name of the base type. No problem there, since:will be shown in OpenAPI as an
integer
. The problem starts when the domain is created as a custom type or as another domain. Then,postgrest-openapi
treats it as astring
instead of the schema defined by the base type.The text was updated successfully, but these errors were encountered: