Real-Time Data
Hasura provides built-in support for GraphQL subscriptions, allowing you to easily implement real-time data updates in your applications.
Auto-Generated APIs
With Hasura, you can instantly generate a fully-functional, scalable GraphQL API from your existing databases without writing any code.
Authorization and Authentication
Hasura provides granular authorization controls and integrates well with various authentication services, helping to secure your data access.
Microservices & Event Triggers
Hasura allows you to create event-driven architectures by allowing you to trigger webhooks based on specified database events.
Scalability
Designed for performance, Hasura can handle large-scale applications by optimizing database queries and offering load-balancing capabilities.
Multi-Data Source Support
Hasura can connect to multiple data sources and databases, making it a versatile choice for complex architectures.
Developer Productivity
The tool significantly reduces the time required for backend development, allowing developers to focus on building frontend features and improving user experience.
Community and Support
Hasura has a growing community and offers comprehensive documentation, which can be invaluable for troubleshooting and getting the most out of the platform.
Hasura is a great tool. I was worried about a few things such as huge RAM consumption, excessive focus on new features and functions despite many outstanding issues, long time rewrite of the server in Rust, etc…
– Source: dev.to
/
about 2 months ago
Hasura has commercial use: https://hasura.io/.
– Source: Hacker News
/
3 months ago
> 2. ORMs do not hide SQL nastiness. This is certainly true! I mean: ORMs are now well known to “make the easy queries slightly more easy, while making intermediate queries really hard and complex queries impossible”. I think the are of ORMs is over. It simply did not deliver. If a book on SQL is –say– 100 pages, a book on Hibernate is 400 pages. So much to learn just to make the easy queries slightly easier to…
– Source: Hacker News
/
5 months ago
Another strategy is to model access control declaratively and enforce it in the application layer. ZenStack (built above Prisma ORM) and Hasura are good examples of this approach. The following code shows how access policies are defined with ZenStack and how a secured CRUD API can be derived automatically.
– Source: dev.to
/
6 months ago
Today, this ecosystem is going strong with new providers like Hasura, AppWrite and Supabase powering millions of projects. There are a few reasons people choose this style of hosting, especially if they are more comfortable with frontend development. BaaS lets them set up a database in a secure way, expose some business logic on top of the data, and connect via a dev-friendly SDK from their app or website code to…
– Source: dev.to
/
7 months ago
Hi! If you’ve ever thought about something like using GraphQL for something like this.. You might like Hasura. (Obligatory I work for Hasura) We’ve got an OpenAPI import and you can setup cron-jobs or one-off jobs and do things like load in headers from the environment variables to pass through. There isn’t currently an easy journey for chaining multiple calls together without writing any code at all, but you can…
– Source: Hacker News
/
7 months ago
Hasura.io — Hasura extends your existing databases wherever it is hosted and provides an instant GraphQL API that can be securely accessed for web, mobile, and data integration workloads. Free for 1GB/month of data pass-through.
– Source: dev.to
/
8 months ago
Hasura is an open-source real-time GraphQL API server with a strong authorization layer on your database. You can subscribe to database events via webhooks. It can combine multiple API servers into one unified graphQL API. Hasura is a great tool to build any CRUD GraphQL API. Hasura does not have any authentication mechanisms; e.g., you need an auth server to handle sign-up and sign-in.
– Source: dev.to
/
10 months ago
I built that repo to share some techniques behind the Hasura engine. Do check that out if you’d like to branch out a bit from your initial requirements; everything is declaratively defined in metadata, it is not a node/golang solution. https://hasura.io/.
Source:
12 months ago
Postgraphile https://postgraphile.org/ Hasura https://hasura.io/ Examples of “batteries included” GraphQL. Combine with a type generator for the language of your choice (eg. https://the-guild.dev/graphql/codegen), and you’ve got your client interface to avoid any type errors. Each comes with a GraphiQL UI for access out of the box as well. It’s more turnkey than any REST solutions I’ve seen, that’s for sure. For…
– Source: Hacker News
/
about 1 year ago
Https://hasura.io/ Stop writing GraphQL resolvers by hand, especially if you’re working off of a relational database model.
– Source: Hacker News
/
about 1 year ago
For those, who are new to Hasura – Hasura is a Data API platform that gives instant GraphQL and REST APIs for all your data sources including MariaDB. It also comes with built-in Authorization.
Source:
over 1 year ago
– Hasura Remote Schema (https://hasura.io/blog/tagged/remote-schemas/) If you want more control over the web API and you were going to fetch the data within your Python back-end and process it there, for some use-cases (not all, but some), there are options: – pg_http (https://github.com/pramsey/pgsql-http) Life is about trade-offs. Doing the work in SQL is not…
– Source: Hacker News
/
over 1 year ago
Https://hasura.io/ is pretty good, it offers more than CRUD, but does CRUD very well by default. I use it as a backend in one of my side hustles.
– Source: Hacker News
/
over 1 year ago
> but nobody does it for a reason
Not quite accurate, theres a whole class of products that do this:
Https://firebase.google.com/
Https://supabase.com/
Https://hasura.io/.
Source:
over 1 year ago
Performant Chat Server – Hasura (you don’t need to code, so it’s super quick to get a basic chat up and running).
Source:
over 1 year ago
There’s https://hasura.io/ that’s supposed to be getting MongoDB support Soon(tm).
Source:
over 1 year ago
You can find a great many packages which implement the functionality defined in the spec, but none of them are going to write your code for you. And they all work differently in some ways. What they do for you is parse the incoming requests, and format the outgoing responses. You can look at things like Hasura and PostGraphile if you want a tool that will inspect your existing database and “automagically” do all…
Source:
over 1 year ago
Hasura is an open-source platform for building, deploying, and managing GraphQL APIs. It provides a range of tools and features that simplify the process of building APIs, including data modeling, real-time subscriptions, automated scaling and security, and team collaboration tools.
– Source: dev.to
/
over 1 year ago
Hasura is an open-source GraphQL engine. You can use Hasura to connect to a database and third-party REST and GraphQL API endpoints. It then uses a GraphQL API to expose your data. Though Hasura primarily exposes your data via a GraphQL API, you can create REST API endpoints from GraphQL queries and mutations.
– Source: dev.to
/
over 1 year ago
You could use something like PostgresT or Hausra for the database, and they will handle auth. Now you’ve reduced the problem to generating a crud app from a database, which things like appsmith claim to be able to do. I’ve never used any of them though, so I can’t speak to how well they work.
Source:
over 1 year ago