Results 289 comments of Brandon Chinn

Hello! No, theres been no explorartion of any sort like that. What would the API look like? If you're just talking about a conversion `Aeson.Value -> Maybe (Object schema)`, you...

No, it wouldn't error in my example, it would return Nothing at runtime, as the object it builds up would have a person key and a person2 key, which doesnt...

I don't understand the purpose or the solution here. Why would a user need to customize the payload? The GraphQL spec is the definitive reference for how fields should get...

Interesting use case! So the graphql spec is very well-defined, so I think allowing a completely arbitrary customization of the JSON instance is too much power. I think we should...

The three states are to distinguish between "existing", "null", and "missing". So the generated Haskell code would be ```hs getArgs = object . concat $ [ ["requiredArg" .= _requiredArg] ,...

It looks like the issue is line 79, right? It assumes an absolute path starts with a slash, but that's not true in Windows. Does look like a bug. Not...

Also, looks like you have some linting failures?

FWIW, now the comment is ejected instead of deleted ```hs data X = X { xName :: Int , xAge :: Int -- ^ A comment about age } --...

Stupid question: why can't we just add py_library to `@python_3_X` like py_binary or py_test? If that's what you mean by transitionable, do py_binary/py_test have the same downside? py_library is a...

Got it. So maybe transitionable won't work here, but I don't see why we can't have a version-specific py_library that just adds the `target_compatible_with` clause. FWIW when I first started...