avro-schema icon indicating copy to clipboard operation
avro-schema copied to clipboard

Apache Avro schema tools for Tarantool

Results 32 avro-schema issues
Sort by recently updated
recently updated
newest added

In order to map unions to graphql I need support for named unions (because type name is required in graphql). Also, it would be nice to have documentation on union...

``` local avro = require('avro_schema') local yaml = require('yaml') local schema = { type = "record", name = "example", fields = { {name = "id", type="string", default=""}, { name =...

enhancement