The previous post demonstrated how to register user accounts in the Hypi App instance. Now, the next step is to [login to the user accounts.](https://hypi.ai/docs/lowcode/authentication
27 posts tagged with "hypi"
View All TagsHow to register new user accounts in your lowcode Hypi app instance
[Creating user accounts](https://hypi.ai/docs/lowcode/authentication
Low code – No code: Delivering value to organizations
Web Push Notifications using API Gateway of Hypi
Hypi’s API gateway acts as middleware and simply integrates the App with other services.
In this article, we will configure Hypi’s API gateway to send Web Push notifications to the browsers.
API Set up to connect with Hypi’s low code platform
How can you connect your application with Hypi’s low code backend?
Hypi is API based low code platform. This tutorial demonstrates API Set up to connect with Hypi and access the functionalities provided by it.
Let’s check how to set up Hypi APIs so that they work for you!
Find data using lowcode ArcQL filters with Hypi
You successfully created a database on Hypi’s low code platform.
Next, how can you easily find the data you need?
Hypi has developed its powerful query language as part of its lowcode platform: ArcQL
‘ArcQL’ works as a filter to select data to process or return. ArcQL statements are used along with query functions like find
. If you understand SQL, you will write the ArcQL statements just by guessing at it.
Let’s consider the following schema of a social media App with Post and Profile types
type Profile {
userAccnt: Account
address: Address
friends: [Account!]
}
type Post {
postedby: Account
date: DateTime
text: String
comments: [Post!]
rating: Float
tagFriends: [Account]
}
Suppose the following data has been inserted in the Post and Profile tables. To know about data insertion, check out this tutorial on CRUD Operations.
userAccnt | user1 | user2 | user3 |
---|---|---|---|
address /city | Nagpur | Mumbai | Pune |
friends | user2/user3 | user1 | user1/user2 |
User Profile
postedby | user1 | user2 |
---|---|---|
text | Use low code! | Future is low code! |
date | 2010-12-12 | 2012-10-09 |
Post
Let’s use ArcQL filters one by one to filter the data.
Authenticating User Accounts with Hypi’s low code APIs
Authentication involves verifying the identification of a user. It is a typical use case in any data-driven application to create User Accounts and provide login to access the features of the application. Hypi’s low code APIs facilitate authentication of user accounts.
Stay with us to know the process of authentication with Hypi’s low code platform!