Explosive

Results 3 issues of Explosive

I need parse some invalid files. Now i hack it this way: ``` module Saxerator module Adapters class Ox def error(message, _, _) # raise Saxerator::ParseException, message end end end...

Ox can use document encoding: ``. I want convert this encoding like this `string&.encode('UTF-8', invalid: :replace, undef: :replace, replace: '?')` But my parsed item is **Saxerator::Builder::HashElement** I can't do this...

Can we declare schema in one place? Your kemal example has schema_string and type declaration: ``` # A User type User implements UniqueId { # users first name firstName: String!...