Skip to main content

27 posts tagged with "hypi"

View All Tags

· 8 min read

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.

userAccntuser1user2user3
address /cityNagpurMumbaiPune
friendsuser2/user3user1user1/user2

User Profile

postedbyuser1user2
textUse low code!Future is low code!
date2010-12-122012-10-09

Post

Let’s use ArcQL filters one by one to filter the data.

· 4 min read

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!