query item_search {
records: records(
filter: {
table: { value: "item" }
}
) {
total_entries
results {
id
title: property(name: "title")
}
}
}
Powerful database made simple
Fully-managed, fast, relational Postgres database built on top of open standards with easy communication thanks to GraphQL.
{% if section == 'templating' %}
<h1>This is easy!</h1>
{% else %}
<h1>Can be powerful.</h1>
{% endif %}
Easy templating with Liquid
Simple markup on the server to build your templates and parse data.
Successfully used by Shopify, Microsoft, GoDaddy and many more.
{% liquid
cache 'featured_products', expire: 60
graph featured_items = 'items/featured'
for item in featured_items.records.results
render 'items/card', item: item
endfor
endcache
%}
The most developer friendly cache you've seen
Speed up your apps leveraging our partial cache mechanism
---
to: 'user@example.com'
from: 'notifications@platformos.com'
subject: 'Welcome to platformOS!'
---
<h1>Welcome,</h1>
<p>Great to have you with us!</p>
Communication with your users made easy
Sending emails or text messages is a key part of making any app.
We made it easy.
{% liquid
background job_id = 'some_heavy_code', delay: 5
%}
Planning some heavy-lifting?
We've got your back if you need to run tasks in the background to not make your users wait.