Hasura를 Discourse의 Postgres 데이터베이스에 연결하여 더 맞춤화되거나 범위가 좁아진 FE를 만들 수 있다는 생각을 해본 분이 있나요?

So fun, this is exactly what I did some days ago!
I’m working with Hasura/nuxt.js since one year on different projects.
Hasura is very powerful, and the coming features are very promising!

I very like discourse forum (but don’t know Ruby and Ember), so I tried to plug Hasura on it.

As I’m not ruby dev, I need to install it but I got some problems to install dev environment on my mac. I struggle with cppjieba_rb gem…

So I just take this dump and setting up in postgresql and Hasura.

All tables seems to be imported. There is only one view? (badge_posts)
I also tracked all foreign-keys relationships, so I can do this kind of query:

{
  posts {
    id
    user_id
    bookmarks {
      id
      name
    }
    uploads {
      id
      url
    }
  }
}

That’s where I am now…