Modus makes it simple to fetch data from external sources. The specific data
source you’re retrieving from determines the method you use to interact with it.
PostgreSQL is a powerful, open source relational database system. Modus provides
a simple way to interact with PostgreSQL databases with the postgresql APIs.
Here is an example of fetching a person from a PostgreSQL database using the
Modus SDK:
package mainimport("github.com/hypermodeinc/modus/sdk/go/pkg/postgresql")// the name of the PostgreSQL connection, as specified in the modus.json manifestconst host ="my-database"type Person struct{ Name string`json:"name"` Age int`json:"age"`}funcGetPerson(name string)(*Person,error){const query ="select * from persons where name = $1" rows,_,_:= postgresql.Query[Person](host, query, name)return&rows[0],nil}
Dgraph is a distributed, transactional graph database. Modus offers an easy way
to query and mutate data in Dgraph with the dgraph APIs.
Here is an example of fetching a person from a Dgraph database using the Modus
SDK:
package mainimport("encoding/json""github.com/hypermodeinc/modus/sdk/go/pkg/dgraph")// the name of the Dgraph connection, as specified in the modus.json manifestconst hostName ="my-dgraph"// declare structures used to parse the JSON document returned by Dgraph query.type Person struct{ Name string`json:"name,omitempty"` Age int32`json:"age,omitempty"`}// Dgraph returns an array of Personstype GetPersonResponse struct{ Persons []*Person `json:"persons"`}funcGetPerson(name string)(*Person,error){ statement := `query getPerson($name:string!){persons(func:eq(name, $name)){ name age}} ` variables :=map[string]string{"$name": name,} response,_:= dgraph.Execute(hostName,&dgraph.Request{ Query:&dgraph.Query{ Query: statement, Variables: variables,},})var data GetPersonResponse json.Unmarshal([]byte(response.Json),&data)return data.Persons[0],nil}
HTTP protocols underpin RESTful APIs with OpenAPI schemas. Modus provides a
convenient way to interact with any external HTTP API using the http APIs in
the Modus SDK.
Here is an example of fetching a person from an HTTP API using the Modus SDK:
package mainimport("encoding/json""fmt""github.com/hypermodeinc/modus/sdk/go/pkg/http")// declare structures used to parse the JSON document returned by the REST APItype Person struct{ Name string`json:"name,omitempty"` Age int32`json:"age,omitempty"`}funcGetPerson(name string)(*Person,error){ url := fmt.Sprintf("https://example.com/api/person?name=%s", name) response,_:= http.Fetch(url)// The API returns Person object as JSONvar person Person response.JSON(&person)return person,nil}
GraphQL is a data-centric query language for APIs that allows you to fetch only
the data you need. With the graphql APIs in the Modus SDK, you can easily
fetch data from any GraphQL endpoint.
Here is an example of fetching a person from a GraphQL API using the Modus SDK:
import("encoding/json""github.com/hypermodeinc/modus/sdk/go/pkg/graphql")// the name of the GraphQL connection, as specified in the modus.json manifestconst hostName ="my-graphql-api"// declare structures used to parse the JSON document returnedtype Person struct{ Name string`json:"name,omitempty"` Age int32`json:"age,omitempty"`}type GetPersonResponse struct{ Person *Person `json:"getPerson"`}funcGetPerson(name string)(*Person,error){ statement := `query getPerson($name: String!){getPerson(name: $name){ age name}}` vars :=map[string]any{"name": name,} response,_:= graphql.Execute[GetPersonResponse](hostName, statement, vars)return response.Data.Person,nil}