prqlc 0.4.2

CLI interface for the PRQL compiler
Documentation

prqlc

Installation

prqlc can be installed with cargo:

cargo install prqlc

...or built from source:

cargo install --path prql-compiler/prqlc

Usage

$ echo "from employees | filter has_dog | select salary" | prqlc compile

SELECT
  *
FROM
  employees
WHERE
  has_dog