Blake Gentry
Blake Gentry
Yes, this would be really great. I haven't found the time to spend on it so far but it's also an area where anybody would be able to contribute, especially...
Agreed! Good test examples including pretender and schema mocking would be helpful. I also recently set up my full schema with VS Code and a `.gqlconfig`, that was a pretty...
I opened #106 to track creating our own documentation site, which could potentially be the same as the demo app. @villander re: mocking, you are familiar with the built-in Apollo...
I'd love to see this. I started using the [recurring_events](https://github.com/pbogut/recurring_events) library, but soon discovered that it does not handle DST transitions at all because it doesn't have any real awareness...
I'm also really interested in using dataloader for my Relay connections. This was discussed awhile ago in #100 and at the time @benwilson512 [said](https://github.com/absinthe-graphql/absinthe_relay/issues/100#issuecomment-357557000): > There is not any way...
@milmazz as I understand it, your solution breaks when loading for many child associations at the same time because the limit and offset don’t get applied on a per-parent basis;...
I was able to get a working implementation of Relay Connections with Dataloader that uses window functions to paginate individually for each parent. While it does work and already allows...
I was giving this addon a try on a new app I'm proofing out. The data is modeled as 3 types with hasMany relationships: ``` Zone -> Device -> Sensor...
@delkopiso thanks for the reply. I've come to the conclusion that graphql and ember-data aren't a very good fit for each other due to mismatched expectations. I settled on using...
One well-scoped accessibility improvement might be to use column and row scopes: http://a11yproject.com/posts/accessible-data-tables/ ```html Monthly Budget Month Amount Earned Amount Spent January $2500 $1500 ``` Though I'm not sure that...