Skip to main content

27 posts tagged with "hypi"

View All Tags

· 3 min read
Asawari P

Hypi specializes in simplifying the creation of web and mobile applications, driven by the singular mission of 'Simplifying Software Development'. With this ethos at the forefront, Hypi introduced a slew of new products and services throughout 2023.

Let's take a closer look at 2023 @ Hypi!

· 6 min read
Asawari P

In this post, we will explore how to sync google sheet and Hypi’s serverless function. We will use Zapier to exchange the data between the two.

Let’s first look into Fenrir - Hypi’s Serverless platform and its functions.

Fenrir helps you deploy your own serverless function on Hypi’s low code backend. Serverless functions are helpful to manage a piece of logic at the backend. You can keep your own serverless functions ready to execute just like any other API.

· 2 min read
Asawari P

Let’s see how to update data saved in an object.

upsert function also does the job of updating data in an object. We need to pass on the hypi.id of the created object to update it.

upsert (values: HypiUpsertUnion!) : [Hypi!] !

First we will insert data into the UpdateObject data type below.

type UpdateObject {
field1: String
}

· 2 min read
Asawari P

Let’s check how to use hypi.id to create a link between two objects!

Look at the following schema.

type OldObject {
field1: String
}

type NewObject {
fld1: String
fld2: OldObject
fld3: [OldObject]
}

NewObject holds the references for OldObject. We’ll see how to create the reference/link between these two objects.

Create two objects of type OldObject.

mutation {
upsert(
values: {
OldObject: [
{ field1: "Hypi's Low code Platform!" }
{ field1: "Hypi easy to use backend-as-a-service" }
]
}
) {
id
}
}