fix typo in jsonb query filters to match operator api (#4505)

Co-authored-by: Tirumarai Selvan <tiru@hasura.io>
This commit is contained in:
Avi Moondra
2020-04-21 23:23:25 -07:00
committed by GitHub
parent e983b1596e
commit a9051b3e59

View File

@@ -508,7 +508,7 @@ Fetch a list of authors whose names begin with A or C:
JSONB operators (_contains, _has_key, etc.)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The ``_contains``, ``_contained_in``, ``_has_key``, ``_has_key_any`` and ``_has_key_all`` operators are used to filter
The ``_contains``, ``_contained_in``, ``_has_key``, ``_has_keys_any`` and ``_has_keys_all`` operators are used to filter
based on ``JSONB`` columns.
For more details on what these operators do, refer to `Postgres docs <https://www.postgresql.org/docs/current/static/functions-json.html#FUNCTIONS-JSONB-OP-TABLE>`__.