Oleksandr Prypkhan

Results 99 comments of Oleksandr Prypkhan

This is actually harder than I anticipated due to additional caching that `AbstractTypeMapper` does internally.

The performance hit of `filemtime` is relatively negligible, but yes, for production I'd rather avoid even that. I'm looking into how caching is implemented in `AbstractTypeMapper` and will report my...

@fogrye I saw that one too, but I actually thought it was quite useful. I'm refactoring the existing caching to use it :) That said, I'm stuck using `intera-doo/cache-utils`'s fork...

You might be right about this, but I'm not sure. Let's imagine `graphql-php` wants to add support for Apollo tracing - obviously, simply hardcoding it is not a good idea...

Instead of providing static regex validation, allow the action's `perform` method to add error messages to fields, like this: ```javascript export { display: { label: 'New Lead', description: 'Triggers when...

Hey, awesome PR :) By any chance, have you tested Franken's watcher in Docker on MacOS? Chokidar has served us very good in that regard, so I'm wondering whether e-watcher...

Got it. I would gladly help you test it, but I really lack the time for it right now :(

Another workaround currently is crafting a separate `.browserslistrc.unsupported` containing negated conditions from the "main" `.browserslistrc`: ``` chrome < 85 firefox < 76 safari < 14.1 ie ``` This does work,...

> might be typed as (TypeScript syntax, but imagine this done in another language): I see, but a language like Java would also use a proper deserialization, which usually allows...

Well, at least the latest version of `graphql-codegen` generates normal unions in TypeScript: ```typescript export type UnionUserLead = Lead | User; ```