Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

views loader (visual query builder) #161

Open
naturallymitchell opened this issue Mar 10, 2019 · 1 comment
Open

views loader (visual query builder) #161

naturallymitchell opened this issue Mar 10, 2019 · 1 comment

Comments

@naturallymitchell
Copy link
Member

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.

or:
basic-node-setup_0

to, roughly, in Speakeasy syntax:

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/
@naturallymitchell naturallymitchell changed the title views loader views loader (visual query builder) Mar 20, 2019
@naturallymitchell naturallymitchell transferred this issue from jazzdotdev/flute May 25, 2020
@naturallymitchell
Copy link
Member Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant