Kyle Boe
Kyle Boe
+1 for Material Icons!
Not sure if anyone is working on this, but I'd love to take a stab at it if nobody else is.
A thought from a design perspective: Should the concept of "Folders" be removed and should "Collections" be able to be nested? I'm not sure if that has already been discussed...
@dependabot merge
Thanks so much for the context. Admittedly, I don't have the strongest JS chops so I don't know that I am qualified enough to maintain this. However, if there is...
It looks like the library linked to in the [README of `easco/absinthe_apollo_sockets`](https://github.com/easco/absinthe_apollo_sockets/blob/master/README.md) is no longer maintained (see: [here](https://github.com/apollographql/subscriptions-transport-ws/blob/master/README.md)). The [updated Apollo docs](https://www.apollographql.com/docs/react/api/link/apollo-link-subscriptions/) also recommend using the [`graphql-ws` standard/library](https://github.com/enisdenjo/graphql-ws). Maybe I...
@maartenvanvliet I think we are talking about the JS (client) side of things. Not necessarily consuming GQL via the backend (elixir/absinthe). Maybe I'm misunderstanding your recommendation though.
Ah I see! I misread the Usage section of the `absinthe_graphql_ws` readme. That makes total sense. Seems like a great route to take!
Ok yeah I just got everything running locally by implementing [`absinthe_graphql_ws`](https://github.com/geometerio/absinthe_graphql_ws) and removing `@absinthe/socket`/`@absinthe/socket-apollo-link` dependency as well as the JS [`phoenix` dependency](https://www.npmjs.com/package/phoenix). I basically followed the [Apollo docs here](https://www.apollographql.com/docs/react/api/link/apollo-link-subscriptions) and...