Open
Description
Currently columns with composite types are filtered out for queries and mutations. They could be supported as shown below.
Translating from
create type "SemVer" as (
major int,
minor int,
patch int,
"preRelease" text[],
"buildMetadata" text[]
);
To
type SemVer {
major Int
minor Int
patch Int
preRelease [String]
metadata [String]
}
Open questions (feel free to discuss below)
- Should sorting be allowed?
- Filtering? Filtering on single attribute?
- How/Should nested composites be allowed?