graphql-engine/cli
Kali Vara Purushotham Santhati ca567bf8cb cli: enhance e2e tests
- actions use-codegen
    - Assert if starter kit files are created
- metadata apply
    - Assert server metadata after apply
    - assert that --dry-run flag will not modify metadata on server
- metadata clear
    - Assert with server metadata that operation was successful.
- metadata inconsistency drop
    - Assert with server metadata that operation was successful.
- metadata inconsistency status
    - Assert for all possible states
- metadata reload
    - Assert effect of operation with server
- migrate and seed subcommands
    - Add tests for MSSQL sources
    - Structure tests in such a way that it’s easy to add tests for new sources

https://github.com/hasura/graphql-engine-mono/pull/1693

Co-authored-by: Aravind K P <8335904+scriptonist@users.noreply.github.com>
GitOrigin-RevId: fcdbb806d105978a07487a40f7fa6e16b3ab8816
2021-07-28 06:45:03 +00:00
..
build ci: add tests for cli-migrations image (#4396) 2020-04-15 07:26:00 +05:30
cmd/hasura cli: update go.mod 2021-06-16 11:45:07 +00:00
commands cli: enhance e2e tests 2021-07-28 06:45:03 +00:00
integration_test cli: add migrate and metadata packages 2021-06-18 06:25:14 +00:00
internal cli: enhance e2e tests 2021-07-28 06:45:03 +00:00
migrate cli: refactor metadata object interface 2021-07-23 09:50:36 +00:00
pkg cli: refactor metadata object interface 2021-07-23 09:50:36 +00:00
plugins cli: update go.mod 2021-06-16 11:45:07 +00:00
seed cli: add support for citus sources 2021-06-21 14:35:00 +00:00
telemetry cli: update go.mod 2021-06-16 11:45:07 +00:00
update cli: update promptui dependency (#51) 2020-11-18 13:36:24 +00:00
util cli: enhance e2e tests 2021-07-28 06:45:03 +00:00
version cli: fix cli compatibility check message 2021-05-19 09:32:33 +00:00
.gitignore cli: show only differences in metadata on metadata diff 2021-06-17 10:16:17 +00:00
.realize.yaml cli: update go-binddata, fix realize (close #3588) (#3687) 2020-01-13 15:24:41 +05:30
cli.go cli: make cli-ext to be usable in the cli library 2021-06-27 13:50:20 +00:00
CONTRIBUTING.md cli: fix inconsistent metadata object list rendering 2021-07-16 05:26:47 +00:00
directory.go cli: use absolute path of project directory 2021-07-16 12:59:04 +00:00
get.sh cli: support ARM architecture 2021-07-14 08:54:43 +00:00
global_config.go Fix typo in debug logs 2021-05-11 06:49:28 +00:00
go.mod cli: fix inconsistent metadata object list rendering 2021-07-16 05:26:47 +00:00
go.sum cli: fix inconsistent metadata object list rendering 2021-07-16 05:26:47 +00:00
logger_hook.go cli: add migrate and metadata packages 2021-06-18 06:25:14 +00:00
Makefile cli: enhance e2e tests 2021-07-28 06:45:03 +00:00
README.md cli: misc fixes 2020-11-24 06:12:24 +00:00

Hasura GraphQL Engine CLI

GoDoc

Installation

Download GraphQL Engine CLI bundled with Hasura CLI

  • Linux/macOS
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | bash
  • Windows

Download the binary cli-hasura-windows-amd64.exe available under Assets of the latest release from the GitHub release page: https://github.com/hasura/graphql-engine/releases

Download using go get

go get github.com/hasura/graphql-engine/cli/cmd/hasura

Build from source

git clone https://github.com/hasura/graphql-engine
cd graphql-engine/cli
make deps
make build
# binaries will be in _output directory

Usage

hasura init --directory <my-project> --endpoint <graphql-endpoint> --admin-secret <admin-secret>
cd <my-project>
hasura console

Contributing

Checkout the contributing guide.