2018-09-11 14:11:24 +03:00
|
|
|
GraphQL engine server flags reference
|
|
|
|
=====================================
|
|
|
|
|
2018-12-03 15:12:24 +03:00
|
|
|
.. contents:: Table of contents
|
|
|
|
:backlinks: none
|
|
|
|
:depth: 1
|
|
|
|
:local:
|
|
|
|
|
2018-09-11 14:11:24 +03:00
|
|
|
Every GraphQL engine command is structured as:
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
2018-10-26 05:59:36 +03:00
|
|
|
$ graphql-engine <server-flags> serve <command-flags>
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
The flags can be passed as ENV variables as well.
|
|
|
|
|
2018-09-11 14:11:24 +03:00
|
|
|
Server flags
|
|
|
|
^^^^^^^^^^^^
|
|
|
|
|
2019-09-11 10:17:14 +03:00
|
|
|
For the ``graphql-engine`` command these are the available flags and ENV variables:
|
2018-09-11 14:11:24 +03:00
|
|
|
|
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
.. list-table::
|
|
|
|
:header-rows: 1
|
2019-05-07 15:21:37 +03:00
|
|
|
:widths: 15 20 30
|
2019-02-14 08:58:38 +03:00
|
|
|
|
|
|
|
* - Flag
|
|
|
|
- ENV variable
|
|
|
|
- Description
|
|
|
|
|
|
|
|
* - ``--database-url <DB_URL>``
|
|
|
|
- ``HASURA_GRAPHQL_DATABASE_URL``
|
|
|
|
- Postgres database URL:
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
``postgres://<user>:<password>@<host>:<port>/<db-name>``
|
|
|
|
|
|
|
|
Example: ``postgres://admin:mypass@mydomain.com:5432/mydb``
|
|
|
|
|
2019-09-11 10:17:14 +03:00
|
|
|
Or you can specify the following options *(only via flags)*:
|
2018-11-29 13:30:26 +03:00
|
|
|
|
|
|
|
.. code-block:: none
|
2018-09-11 14:11:24 +03:00
|
|
|
|
|
|
|
--host Postgres server host
|
|
|
|
-p, --port Postgres server port
|
|
|
|
-u, --user Database user name
|
|
|
|
-p, --password Password of the user
|
|
|
|
-d, --dbname Database name to connect to
|
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
|
2019-05-16 09:13:25 +03:00
|
|
|
.. _command-flags:
|
|
|
|
|
2018-09-11 14:11:24 +03:00
|
|
|
Command flags
|
|
|
|
^^^^^^^^^^^^^
|
|
|
|
|
2019-09-11 10:17:14 +03:00
|
|
|
For the ``serve`` sub-command these are the available flags and ENV variables:
|
2018-12-03 14:19:08 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
.. list-table::
|
|
|
|
:header-rows: 1
|
2019-05-07 15:21:37 +03:00
|
|
|
:widths: 15 20 30
|
2018-12-03 14:19:08 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - Flag
|
|
|
|
- ENV variable
|
|
|
|
- Description
|
2018-12-03 14:19:08 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - ``--server-port <PORT>``
|
|
|
|
- ``HASURA_GRAPHQL_SERVER_PORT``
|
|
|
|
- Port on which graphql-engine should be served (default: 8080)
|
2018-12-03 14:19:08 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - ``--server-host <HOST>``
|
|
|
|
- ``HASURA_GRAPHQL_SERVER_HOST``
|
|
|
|
- Host on which graphql-engine will listen (default: ``*``)
|
2018-12-03 14:19:08 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - ``--enable-console <true|false>``
|
|
|
|
- ``HASURA_GRAPHQL_ENABLE_CONSOLE``
|
2019-09-19 15:54:40 +03:00
|
|
|
- Enable the Hasura Console (served by the server on ``/`` and ``/console``) (default: false)
|
2018-12-03 14:19:08 +03:00
|
|
|
|
2019-02-14 14:14:25 +03:00
|
|
|
* - ``--admin-secret <ADMIN_SECRET_KEY>``
|
|
|
|
- ``HASURA_GRAPHQL_ADMIN_SECRET``
|
|
|
|
- Admin secret key, required to access this instance. This is mandatory
|
2019-02-14 08:58:38 +03:00
|
|
|
when you use webhook or JWT.
|
2019-01-11 14:07:13 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - ``--auth-hook <WEBHOOK_URL>``
|
|
|
|
- ``HASURA_GRAPHQL_AUTH_HOOK``
|
|
|
|
- URL of the authorization webhook required to authorize requests.
|
|
|
|
See auth webhooks docs for more details.
|
2019-01-18 17:20:41 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - ``--auth-hook-mode <GET|POST>``
|
|
|
|
- ``HASURA_GRAPHQL_AUTH_HOOK_MODE``
|
|
|
|
- HTTP method to use for the authorization webhook (default: GET)
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - ``--jwt-secret <JSON_CONFIG>``
|
|
|
|
- ``HASURA_GRAPHQL_JWT_SECRET``
|
|
|
|
- A JSON string containing type and the JWK used for verifying (and other
|
|
|
|
optional details).
|
|
|
|
Example: ``{"type": "HS256", "key": "3bd561c37d214b4496d09049fadc542c"}``.
|
|
|
|
See the JWT docs for more details.
|
2019-01-28 16:55:28 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - ``--unauthorized-role <ROLE>``
|
|
|
|
- ``HASURA_GRAPHQL_UNAUTHORIZED_ROLE``
|
|
|
|
- Unauthorized role, used when access-key is not sent in access-key only
|
2019-09-11 10:17:14 +03:00
|
|
|
mode or the ``Authorization`` header is absent in JWT mode.
|
|
|
|
Example: ``anonymous``. Now whenever the "authorization" header is
|
|
|
|
absent, the request's role will default to ``anonymous``.
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - ``--cors-domain <DOMAINS>``
|
|
|
|
- ``HASURA_GRAPHQL_CORS_DOMAIN``
|
|
|
|
- CSV of list of domains, excluding scheme (http/https) and including port,
|
2019-09-11 10:17:14 +03:00
|
|
|
to allow for CORS. Wildcard domains are allowed.
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - ``--disable-cors``
|
|
|
|
- N/A
|
|
|
|
- Disable CORS. Do not send any CORS headers on any request.
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2019-03-06 11:58:04 +03:00
|
|
|
* - ``--ws-read-cookie <true|false>``
|
2019-03-04 10:46:53 +03:00
|
|
|
- ``HASURA_GRAPHQL_WS_READ_COOKIE``
|
2019-03-06 11:58:04 +03:00
|
|
|
- Read cookie on WebSocket initial handshake even when CORS is disabled.
|
2019-03-04 10:46:53 +03:00
|
|
|
This can be a potential security flaw! Please make sure you know what
|
2019-03-06 11:58:04 +03:00
|
|
|
you're doing. This configuration is only applicable when CORS is disabled.
|
|
|
|
(default: false)
|
2019-03-04 10:46:53 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - ``--enable-telemetry <true|false>``
|
|
|
|
- ``HASURA_GRAPHQL_ENABLE_TELEMETRY``
|
|
|
|
- Enable anonymous telemetry (default: true)
|
2018-12-14 06:21:41 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - N/A
|
|
|
|
- ``HASURA_GRAPHQL_EVENTS_HTTP_POOL_SIZE``
|
|
|
|
- Max event threads
|
2019-01-18 17:20:41 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - N/A
|
|
|
|
- ``HASURA_GRAPHQL_EVENTS_FETCH_INTERVAL``
|
|
|
|
- Postgres events polling interval
|
2018-12-14 06:21:41 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - ``-s, --stripes <NO_OF_STRIPES>``
|
|
|
|
- ``HASURA_GRAPHQL_PG_STRIPES``
|
2019-12-12 23:10:04 +03:00
|
|
|
- Number of stripes (distinct sub-pools) to maintain with Postgres (default: 1).
|
|
|
|
New connections will be taken from a particular stripe pseudo-randomly.
|
2018-12-14 06:21:41 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - ``-c, --connections <NO_OF_CONNS>``
|
|
|
|
- ``HASURA_GRAPHQL_PG_CONNECTIONS``
|
2019-12-12 23:10:04 +03:00
|
|
|
- Maximum number of Postgres connections that can be opened per stripe (default: 50).
|
|
|
|
When the maximum is reached we will block until a new connection becomes available,
|
|
|
|
even if there is capacity in other stripes.
|
2018-11-29 13:30:26 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - ``--timeout <SECONDS>``
|
|
|
|
- ``HASURA_GRAPHQL_PG_TIMEOUT``
|
|
|
|
- Each connection's idle time before it is closed (default: 180 sec)
|
2018-11-29 13:30:26 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - ``--use-prepared-statements <true|false>``
|
|
|
|
- ``HASURA_GRAPHQL_USE_PREPARED_STATEMENTS``
|
|
|
|
- Use prepared statements for queries (default: true)
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
* - ``-i, --tx-iso <TXISO>``
|
|
|
|
- ``HASURA_GRAPHQL_TX_ISOLATION``
|
2019-09-11 10:17:14 +03:00
|
|
|
- Transaction isolation. read-committed / repeatable-read / serializable (default: read-commited)
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2019-03-01 14:45:04 +03:00
|
|
|
* - ``--stringify-numeric-types``
|
|
|
|
- ``HASURA_GRAPHQL_STRINGIFY_NUMERIC_TYPES``
|
2019-03-06 11:58:04 +03:00
|
|
|
- Stringify certain Postgres numeric types, specifically ``bigint``, ``numeric``, ``decimal`` and
|
|
|
|
``double precision`` as they don't fit into the ``IEEE-754`` spec for JSON encoding-decoding.
|
|
|
|
(default: false)
|
2019-03-01 14:45:04 +03:00
|
|
|
|
2019-02-28 16:53:03 +03:00
|
|
|
* - ``--enabled-apis <APIS>``
|
|
|
|
- ``HASURA_GRAPHQL_ENABLED_APIS``
|
2019-04-30 11:34:08 +03:00
|
|
|
- Comma separated list of APIs (options: ``metadata``, ``graphql``, ``pgdump``) to be enabled.
|
|
|
|
(default: ``metadata,graphql,pgdump``)
|
2019-05-16 10:45:29 +03:00
|
|
|
|
2019-08-09 12:13:37 +03:00
|
|
|
* - ``--live-queries-multiplexed-refetch-interval``
|
2019-05-07 15:21:37 +03:00
|
|
|
- ``HASURA_GRAPHQL_LIVE_QUERIES_MULTIPLEXED_REFETCH_INTERVAL``
|
2019-09-11 10:17:14 +03:00
|
|
|
- Updated results (if any) will be sent at most once in this interval (in milliseconds) for live queries
|
2019-05-16 10:45:29 +03:00
|
|
|
which can be multiplexed. Default: 1000 (1sec)
|
|
|
|
|
2019-08-09 12:13:37 +03:00
|
|
|
* - ``--live-queries-multiplexed-batch-size``
|
2019-05-07 15:21:37 +03:00
|
|
|
- ``HASURA_GRAPHQL_LIVE_QUERIES_MULTIPLEXED_BATCH_SIZE``
|
2019-09-19 15:54:40 +03:00
|
|
|
- Multiplexed live queries are split into batches of the specified size. Default: 100
|
2019-05-16 10:45:29 +03:00
|
|
|
|
2019-08-09 12:13:37 +03:00
|
|
|
* - ``--enable-allowlist``
|
2019-05-16 09:13:25 +03:00
|
|
|
- ``HASURA_GRAPHQL_ENABLE_ALLOWLIST``
|
2019-09-11 10:17:14 +03:00
|
|
|
- Restrict queries allowed to be executed by the GraphQL engine to those that are part of the configured
|
|
|
|
allow-list. Default: ``false`` *(Available for versions > v1.0.0-beta.1)*
|
2019-09-19 15:54:40 +03:00
|
|
|
|
2019-08-09 12:13:37 +03:00
|
|
|
* - ``--console-assets-dir``
|
2019-05-16 10:45:29 +03:00
|
|
|
- ``HASURA_GRAPHQL_CONSOLE_ASSETS_DIR``
|
|
|
|
- Set the value to ``/srv/console-assets`` for the console to load assets from the server itself
|
2019-09-11 10:17:14 +03:00
|
|
|
instead of CDN *(Available for versions > v1.0.0-beta.1)*
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2019-08-09 12:13:37 +03:00
|
|
|
* - ``--enabled-log-types``
|
2019-07-11 08:37:06 +03:00
|
|
|
- ``HASURA_GRAPHQL_ENABLED_LOG_TYPES``
|
|
|
|
- Set the enabled log types. This is a comma-separated list of log-types to
|
|
|
|
enable. Default: ``startup, http-log, webhook-log, websocket-log``. See
|
|
|
|
:ref:`log types <log-types>` for more details.
|
|
|
|
|
2019-08-09 12:13:37 +03:00
|
|
|
* - ``--log-level``
|
2019-07-11 08:37:06 +03:00
|
|
|
- ``HASURA_GRAPHQL_LOG_LEVEL``
|
|
|
|
- Set the logging level. Default: ``info``. Options: ``debug``, ``info``,
|
|
|
|
``warn``, ``error``.
|
|
|
|
|
2019-02-14 08:58:38 +03:00
|
|
|
.. note::
|
2019-03-13 13:04:40 +03:00
|
|
|
|
|
|
|
When the equivalent flags for environment variables are used, the flags will take precedence.
|