Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
vsurabhi
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
The “fifth wheel” parallel parking tool that never hit it big (2018)
(hagerty.com)
72 points
by
vsurabhi
4y ago
|
83 comments
2.
▲
by
vsurabhi
5y ago
(Vamshi from Hasura) We've been working on SQL server native support and we're happy to announce support for read-only GraphQL cases with new or existing SQL Servers. Next up is adding support for stored procedures, mutations, Has
3.
▲
Clodl: Turn dynamically linked ELF binaries into self-contained closures
(github.com)
56 points
by
vsurabhi
5y ago
|
27 comments
4.
▲
Building a GraphQL to SQL Compiler on Postgres, MS SQL and MySQL
(hasura.io)
8 points
by
vsurabhi
5y ago
|
0 comments
5.
▲
Hasura 2.0 Engineering Overview
(hasura.io)
3 points
by
vsurabhi
5y ago
|
0 comments
6.
▲
Rust Async vs. Linux threads: context switch time and memory usage
(github.com)
2 points
by
vsurabhi
6y ago
|
0 comments
7.
▲
by
vsurabhi
6y ago
This and a recent feature addition to neovim (passing lua closures to vimscript functions [1]) should make a good substitute for elisp to configure neovim. [1] https://github.com/neovim/neovim/pull/12507
8.
▲
Facebook should be treated as co-accused in riots: Delhi govt. panel
(thehindu.com)
2 points
by
vsurabhi
6y ago
|
0 comments
9.
▲
New AMD Ryzen 3000XT Processors Available Today
(anandtech.com)
1 points
by
vsurabhi
6y ago
|
0 comments
10.
▲
The UChicago χ-Projects
(chi.cs.uchicago.edu)
3 points
by
vsurabhi
6y ago
|
0 comments
11.
▲
Show HN: Hasura Cloud: Managed GraphQL for your database and services
(hasura.io)
13 points
by
vsurabhi
6y ago
|
2 comments
12.
▲
Jim: An open-source, small footprint implementation of Tcl
(github.com)
7 points
by
vsurabhi
6y ago
|
0 comments
13.
▲
Build Your Own Text Editor
(viewsourcecode.org)
4 points
by
vsurabhi
7y ago
|
0 comments
14.
▲
Court says Melbourne dentist can seek user details from Google over bad review
(theguardian.com)
10 points
by
vsurabhi
7y ago
|
7 comments
15.
▲
A Small and Simple Pen Plotter
(github.com)
2 points
by
vsurabhi
7y ago
|
0 comments
16.
▲
gc: A garbage collector for C and C++
(hboehm.info)
2 points
by
vsurabhi
7y ago
|
0 comments
17.
▲
Lnav: Watch and analyze your log files from a terminal
(github.com)
1 points
by
vsurabhi
7y ago
|
0 comments
18.
▲
Osquery: SQL-powered operating system instrumentation, monitoring, and analytics
(github.com)
132 points
by
vsurabhi
7y ago
|
34 comments
19.
▲
by
vsurabhi
7y ago
I've been using osquery ( https://github.com/osquery/osquery ) for a while. It is neat and I can appreciate the idea of 'exposing OS interfaces as databases'.
20.
▲
OpenDrop: An Open Source AirDrop Implementation
(github.com)
813 points
by
vsurabhi
7y ago
|
222 comments
21.
▲
by
vsurabhi
8y ago
If you are using Postgres as your database you can use Hasura to add GraphQL APIs on top of all the tables. Hasura can be exposed to the fronted applications with declarative permissions. You can add a reverse proxy if you want to. Hasura s
22.
▲
by
vsurabhi
8y ago
While Hasura is a 'BaaS' (in the sense that it can be directly exposed to frontend applications), it absolutely does not come with the limitations that you have mentioned. Hasura is not an 'either or' solution like Graph
23.
▲
by
vsurabhi
8y ago
> .. completely flew over me Thanks for the feedback. We thought that the 'BaaS' part would convey it. > .. small datamodel to a very complete GraphQL types .. Given any GraphQL server, you can generate the types/functi
24.
▲
by
vsurabhi
8y ago
That's pretty much what we are doing at Hasura, expose Postgres to the client directly with a powerful enough query language on top of GraphQL so that developers can get away with writing as little business logic as possible. The bigge
25.
▲
by
vsurabhi
8y ago
Prisma is used as an ORM for your database, so you would still need to write your own graphql server which sits in front of Prisma. Hasura is meant to be exposed to the clients directly with declarative access control rules. When you have c
26.
▲
by
vsurabhi
8y ago
I think you should be able to use it alongside SQLAlchemy if you manage your schema through Prisma. Someone from Prisma team should be able to give you a more thorough answer.
27.
▲
by
vsurabhi
8y ago
Very similar projects ! The emphasis of Hasura is to make it seamless to work with existing databases. The primary difference is how authorization is handled. In Postgraphile, you map your application roles to Postgres users and define poli
28.
▲
by
vsurabhi
8y ago
We do not batch queries. We take a slightly different approach. We convert the GraphQL query AST into a single SQL query (no matter how nested the GraphQL query is).
29.
▲
by
vsurabhi
8y ago
> What I'm not seeing is how do you .. You can write fairly complex rules with the access control layer ! The first two conditions are possible (except for the project is only visible on Mondays). allow select on rows which sati
30.
▲
by
vsurabhi
8y ago
Hi, I'm one of the core contributors to the project. Hasura and Prisma have very different approaches and end-goals at the moment. TL;DR: Very simply put, Hasura is postgres first and adds an access-control layer to make it possible to
More ›