From 70b5223ad385233c86d54ccebcb1d0213c2ecf5f Mon Sep 17 00:00:00 2001 From: Avi Moondra Date: Mon, 20 Apr 2020 16:21:50 -0700 Subject: [PATCH] fix typo in query filters to match operator api --- docs/graphql/manual/queries/query-filters.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/graphql/manual/queries/query-filters.rst b/docs/graphql/manual/queries/query-filters.rst index 12bce60ec3865..4d69fffcc02f6 100644 --- a/docs/graphql/manual/queries/query-filters.rst +++ b/docs/graphql/manual/queries/query-filters.rst @@ -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 `__.