jazzdotdev / jazzdotdev/flute

views loader (visual query builder)

Open
#161 1 comment 0 reactions 0 assignees View on GitHub
feature/loader model/plan progress/0.25 track/available value/1
Dominant language
Lua
Stars
17
Forks
4
PR merge metrics
No merged PRs in 30d

Description

instead of manual lua code, ie(??):
https://github.com/foundpatterns/contentdb/blob/66ec7a04ca4b194b35e532ae4f99774c8da110fd/read_document.lua
https://github.com/foundpatterns/contentdb/blob/66ec7a04ca4b194b35e532ae4f99774c8da110fd/walk_documents.lua

go from:
https://github.com/foundpatterns/gists/blob/master/content.yaml
see also, [nchah/freebase-mql: A review of the deprecated Freebase knowledge base and Metaweb Query Language (MQL). A brief comparison of MQL and GraphQL.](https://github.com/nchah/freebase-mql)

or:
![basic-node-setup_0](https://user-images.githubusercontent.com/584077/54092792-a9185e00-434d-11e9-92b4-092b95e167dd.png)

to, roughly, in Speakeasy syntax:
```sql
SELECT
node.title AS node_title,
node.nid AS nid,
node.created AS node_created
FROM
{node} node
WHERE
(( (node.status = '1') AND (node.type IN ('article')) ))
ORDER BY
node_created DESC
LIMIT 10 OFFSET 0
```

(copied from https://evolvingweb.ca/blog/developing-views-part-i-describing-your-data-views )

~~~

will be useful when making a [BaaS](https://en.wikipedia.org/wiki/Mobile_backend_as_a_service) like:
* https://backendless.com/platform/backend-as-a-service/
* https://www.devart.com/dbforge/oracle/studio/

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.