Skip to content

v0.9.0 - Added support for composite types

Compare
Choose a tag to compare
@MrLeebo MrLeebo released this 01 Feb 05:34
· 14 commits to main since this release

Adds composite types to the parser, printer, and Schema Builder

model Gallery {
  photos Photo[]
}

type Photo {
  width Int
  height Int
  url String
}

The schema node is { type: "type" } and the builder method is builder.type("Photo")

v0.8.1...v0.9.0