Praveen Durairaju
Praveen Durairaju
[URQL](https://github.com/FormidableLabs/urql) is a GraphQL Client for React. Using the same learn.hasura.io GraphQL Backend, need to build the [realtime todo app](http://final-graphql-tutorial.netlify.com) in urql along with the tutorial content.
Currently when the search results appear, it stays persistent till the search term is cleared. When the focus is not inside the search results, then the panel needs to be...
The current [signup action](https://github.com/hasura/hasura-actions-examples/tree/master/auth/functions/nodejs-express) is written in Node.js Express. The same example needs to be ported to python flask. - An endpoint `/signup` which receives `name`, `username` and `password` as...
Add an example to do social login (Google, Facebook, Github) with Hasura
This PR adds a community resource - [GraphQL Tutorials](https://hasura.io/learn/) which is a series of 2 hour tutorials covering various libraries and frameworks (React, Vue, Angular, Elm, ReasonML, React Native, iOS,...
Hey all, Creating this issue to discuss small but important changes to the GraphQL Getting Started Experience. When you visit [graphql.org](https://graphql.org) landing page, you land on this hero banner. ...
I have made an attempt to create a version of this WhatsApp Clone React App using Hasura GraphQL Engine APIs. Here's the [source of the app](https://github.com/hasura/graphql-engine/tree/master/community/sample-apps/whatsapp-clone-typescript-react/react-app) Key points: - Data...
The codegen for error handling looks like this: ``` if (errors) { return res.status(400).json(errors[0]) } ``` This doesn't send the `code` received in the `errors[0].extensions` object and only sends the...