@malloydata/malloy 0.0.28 → 0.0.29-dev230329194206
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Malloy is an experimental language for describing data relationships and transfo
|
|
|
4
4
|
|
|
5
5
|
## Building applications or products in javascript with @malloydata/malloy
|
|
6
6
|
|
|
7
|
-
This package facilitates building the Malloy language - or the usage of data models or queries written in the Malloy language - into your product, data application, or website. The `@malloydata/malloy` library translates complex data operations written
|
|
7
|
+
This package facilitates building the Malloy language - or the usage of data models or queries written in the Malloy language - into your product, data application, or website. The `@malloydata/malloy` library translates complex data operations written in the Malloy language into 1) SQL and 2) metadata. The SQL can be run against a database, and then combined with results and rendered or used in a varitey of ways.
|
|
8
8
|
|
|
9
9
|
## Show me an example!
|
|
10
10
|
|
|
@@ -37,4 +37,4 @@ In practice, much of this loop is handled by various database plugins:
|
|
|
37
37
|
|
|
38
38
|
You can find a (very) simple example of writing a CLI for executing Malloy queries [here](https://github.com/malloydata/malloy/tree/main/demo/malloy-demo-bq-cli)
|
|
39
39
|
|
|
40
|
-
A more realistic and complex use case - we use these libraries to power our VSCode Extension. Some examples can be found [here](https://github.com/malloydata/malloy/tree/main/
|
|
40
|
+
A more realistic and complex use case - we use these libraries to power our VSCode Extension. Some examples can be found [here](https://github.com/malloydata/malloy-vscode-extension/tree/main/src/extension/commands)
|