Igor Strebz

Results 102 comments of Igor Strebz

@luizperes with node-expat you can add js callbacks for events like "opening tag", "new attribute with name _x_", etc, so only the required properties are picked, copied and passed back...

I believe the issue could be tracked [here](https://github.com/comfyanonymous/ComfyUI/issues/2315), also Jonathan made a [script](https://github.com/comfyanonymous/ComfyUI/discussions/3283#discussion-6522149) which streamlines the installation process.

The standard `encoding/xml` package has very low performance, so the only way to parse huge XML files is SAX parsing: https://github.com/golang/go/issues/21823

The most significant advantage of GraphQL is its ability to gradually update the schema, so there are no sudden changes for the API's end users. However, if such changes are...

@vepanimas, thanks to you and Ksenia!

1. Try switching off the `ApolloTracingExtension`, it has a lot of downsides on the performance and response size. 2. ~~Also, I have concerns about the `MergedObject`, as it represents a...

I have approached the same problem with a different solution: don't touch the transport (`res.error` & `res.extensions` fields), let the error be part of the handler response type: ```graphql mutation...

Do you have any idea why the pipeline checks could fail?

@sunli829 would you be so kind to pay your attention here, please?

That's against the GraphQL spec that postulates the single schema. But you could do this by yourself. In case of `poem`, pass both `MySchema1` and `MySchema2`, then choose one. A...