MichelDiz
Here we go https://dgraph.io/
Dgraph is a very powerful graphical database. It is still undergoing changes, but I believe it is one of the best it has today. Although it is changing a lot adding new features.
They support Post HTTP, gRPC, and so on. I imagine it would be simple now use these supports they give us. However, I believe a more native support. Using gRPC or even some simple integration solution that can natively understand Dgraph for Elixir.
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
I’m trying to set up Emacs with elixir-ls via lsp-mode and credo via Flycheck. This should mostly be preconfigured as Flycheck picks up c...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
idi527
There is GitHub - elbow-jason/dgraph_ex: A database wrapper and http client for dgraph · GitHub already. It seems to not be using grpc, though
WolfDan
That can be really cool, I’ve working with Dgraph for about a month (I created a PR to dgraphex to support virtual fields and resolvers), is pretty cool and the new update is very promising, but as I mention in that post Elixir don’t have any functional Grpc library so it will make harder to support Dgraph for elixir
For the moment I’ve working in a parser to Absinthe request to Dgraph request, but seems like it will be obsolete when the 0.9 will be release, so I’m thinking if really continue using Dgraph or just stick to another solution…
MichelDiz
Google Trolled me…
I swear I looked for something related to Dgraph and Elixir and found nothing promising. What you’re showing me gave me hope LOLLL Thank you!!
MichelDiz
I saw your comment with the Dgraph staff. Manish said that in the future they may can give support. I made a post there commenting on switching from Go lang to Elixir the Dgraph Client code. Just a silly topic about Go lang and Elixir lang - Users - Discuss Dgraph
idi527
Whenever I try to find a library for a language, I start with github, not google.
For example, in this case I typed
dgraph language:Elixirinto github’s search field andelbow-jason/dgraph_ex3was the only result.MichelDiz
see this idea here
https://github.com/luin/ioredis/issues/518#issuecomment-330018801
This “Join-Monster” has a very interesting and abstract concept. If we had something similar for a module for Elixir + Dgraph. It would be the holy grail. For it would not depend on much (Although something native would be better).And except for new endpoints that Dgraph staff may change again in the future.
Join-Monster copies both Schema and resolves and acts as a middleware. Sending to the database (Postgress, MySQL or something) the exact query that a Dgraph Client uses. That is, Join-Monster adapts to the user’s Schema and the client query. DgraphQL does something similar.
MichelDiz
I usually search for articles. For if I go searching in GitHub I will see hundreds of repositories that escape my goal. Google in thesis would give me an accurate result if there were blogs or other sources talking about the topic. Abstract searches are best with search engines.
WolfDan
Sorry for the late response. I’ve been really busy ^^’
It look pretty cool! As I can see you can achieve the same with Ecto (look absinthe ecto) but there is not something that batch all the construct joins and so on (for the moment), I’ve been very tempted to make a library on Ecto for DGraph but I’m really sure if they can fill that well as I’m thinking ^^’
f34nk
Hello,
since dgraph_ex currently only supports Dgraph v0.8x and there were some breaking changes in Dgraph v1.x, I opened an issue a few days ago.
The original author seems to be busy. So I forked the project and created a branch with support of Dgraph v1.x.
This fork is a work in progress to quickly add support for Dgraph v1.x.
Please check out the README for more infos.
ospaarmann
I started writing a client based on gRPC. You can find it here.. Please note that this is work in progress and not at all done.
Any suggestions and contributions are very welcome!