Bruce Williams
Bruce Williams
@joshprice I meant "in December." I agree on @asonge's parser, as well. I think it probably has the best featureset, but fast custom parsers are always harder to read than...
RE "pascalize" -- `Absinthe.Utils.camelize/2` has a `:lower` option.
Better warnings certainly seem like a necessity. I think having names capitalized via `name: "YourName"` is perfectly reasonable -- but I don't think supporting `:CapitalizedIdentifiers` (or `CapitalizedIdentifiers`) is a good...
Right; names, not internal identifiers.
Scheduling addressing this as part of the "schema definition refactor" milestone.
Because regardless of which runtime adapter is being used, the _internal_ representation will stay static (ie, the schema convention can't change), and because `snake_case` is conventional for Elixir, I think...
I think we should just error. `:fooBar` just seems _wrong_, and it complicates a ton of things we can figure out implicitly to deal with it.
Ugh, this issue is so deeply annoying when having a hard requirement to do windowed pagination due to limited space. Even with a server returning `hasPreviousPage` as `true` (because it...
:laughing: that's a shameless [Absinthe](https://github.com/absinthe-graphql/absinthe) plug right there, @benwilson512.
My guess is the issue is with `route = route.nextSibling` -- maybe that needs to take into account how elements are inserted via ``. I'll investigate; thanks for the pointer.