From db5d0178308c70893e34d345fd192d27b02e43e5 Mon Sep 17 00:00:00 2001 From: Marion Schleifer Date: Wed, 11 Mar 2020 07:29:26 +0100 Subject: [PATCH 1/3] add-meta-descbs-to-actions --- docs/graphql/manual/actions/action-connect.rst | 4 ++++ docs/graphql/manual/actions/action-handlers.rst | 4 ++++ docs/graphql/manual/actions/async-actions.rst | 4 ++++ docs/graphql/manual/actions/codegen.rst | 4 ++++ docs/graphql/manual/actions/create.rst | 6 +++++- docs/graphql/manual/actions/derive.rst | 4 ++++ docs/graphql/manual/actions/index.rst | 4 ++++ docs/graphql/manual/actions/types/index.rst | 4 ++++ docs/graphql/manual/api-reference/explain.rst | 4 ++++ 9 files changed, 37 insertions(+), 1 deletion(-) diff --git a/docs/graphql/manual/actions/action-connect.rst b/docs/graphql/manual/actions/action-connect.rst index 72f8155746ab1..b102ef98f781f 100644 --- a/docs/graphql/manual/actions/action-connect.rst +++ b/docs/graphql/manual/actions/action-connect.rst @@ -1,3 +1,7 @@ +.. meta:: + :description: Connecting Hasura actions with the graph + :keywords: hasura, docs, actions, connect + Connecting actions with the graph ================================= diff --git a/docs/graphql/manual/actions/action-handlers.rst b/docs/graphql/manual/actions/action-handlers.rst index 04584bec13830..383d3460ca91d 100644 --- a/docs/graphql/manual/actions/action-handlers.rst +++ b/docs/graphql/manual/actions/action-handlers.rst @@ -1,3 +1,7 @@ +.. meta:: + :description: Action handlers for Hasura actions + :keywords: hasura, docs, actions, handlers + Action handlers =============== diff --git a/docs/graphql/manual/actions/async-actions.rst b/docs/graphql/manual/actions/async-actions.rst index afbe42986fc0e..7ce37122a4a4d 100644 --- a/docs/graphql/manual/actions/async-actions.rst +++ b/docs/graphql/manual/actions/async-actions.rst @@ -1,3 +1,7 @@ +.. meta:: + :description: Async actions + :keywords: hasura, docs, actions, async actions + Async actions ============= diff --git a/docs/graphql/manual/actions/codegen.rst b/docs/graphql/manual/actions/codegen.rst index e082aa43f87bf..5d9a05675c595 100644 --- a/docs/graphql/manual/actions/codegen.rst +++ b/docs/graphql/manual/actions/codegen.rst @@ -1,3 +1,7 @@ +.. meta:: + :description: Codegen for Hasura actions + :keywords: hasura, docs, actions, codegen + Actions codegen =============== diff --git a/docs/graphql/manual/actions/create.rst b/docs/graphql/manual/actions/create.rst index 2a25312b2ea16..aee7c6c05d604 100644 --- a/docs/graphql/manual/actions/create.rst +++ b/docs/graphql/manual/actions/create.rst @@ -1,3 +1,7 @@ +.. meta:: + :description: Create actions with Hasura + :keywords: hasura, docs, actions, create + Creating actions ================ @@ -223,4 +227,4 @@ In the Hasura console, head to the ``GraphiQL`` tab and try out the new action. } } -And that's it. You have created your first action! \ No newline at end of file +And that's it. You have created your first action! diff --git a/docs/graphql/manual/actions/derive.rst b/docs/graphql/manual/actions/derive.rst index 6efe2bd6b2e24..8bbe63ce82e1a 100644 --- a/docs/graphql/manual/actions/derive.rst +++ b/docs/graphql/manual/actions/derive.rst @@ -1,3 +1,7 @@ +.. meta:: + :description: Deriving Hasura actions + :keywords: hasura, docs, actions, derive + Deriving actions ================ diff --git a/docs/graphql/manual/actions/index.rst b/docs/graphql/manual/actions/index.rst index c572c0cde721f..6375846e24c75 100644 --- a/docs/graphql/manual/actions/index.rst +++ b/docs/graphql/manual/actions/index.rst @@ -1,3 +1,7 @@ +.. meta:: + :description: Hasura actions + :keywords: hasura, docs, actions + Actions (beta) ============== diff --git a/docs/graphql/manual/actions/types/index.rst b/docs/graphql/manual/actions/types/index.rst index 64068192020dc..c80096f821d25 100644 --- a/docs/graphql/manual/actions/types/index.rst +++ b/docs/graphql/manual/actions/types/index.rst @@ -1,3 +1,7 @@ +.. meta:: + :description: Custom GraphQL types for Hasura actions + :keywords: hasura, docs, actions, custom types + Custom GraphQL types ==================== diff --git a/docs/graphql/manual/api-reference/explain.rst b/docs/graphql/manual/api-reference/explain.rst index 0c2769c1a916d..b0c817058e0e0 100644 --- a/docs/graphql/manual/api-reference/explain.rst +++ b/docs/graphql/manual/api-reference/explain.rst @@ -1,3 +1,7 @@ +.. meta:: + :description: Hasura explain API reference + :keywords: hasura, docs, explain API, API reference + .. _explain_api_reference: Explain API Reference From 7ec1c5335a722ff476721ac0eb20530d4f26b27d Mon Sep 17 00:00:00 2001 From: Marion Schleifer Date: Wed, 11 Mar 2020 08:58:14 +0100 Subject: [PATCH 2/3] update changelog.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c13dc096c8d01..13c04b027130e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -64,3 +64,4 @@ - fix casting citext column type (fix #2818) (#3861) - Add downgrade command (close #1156) (#3760) - persist mix files only when coverage is enabled (#3844) +- add meta descriptions to actions docs (#4082) From c78bc033512185a21598499c2fc9f8eaeb30239a Mon Sep 17 00:00:00 2001 From: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com> Date: Wed, 11 Mar 2020 14:18:08 +0530 Subject: [PATCH 3/3] Update create.rst --- docs/graphql/manual/actions/create.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/graphql/manual/actions/create.rst b/docs/graphql/manual/actions/create.rst index aee7c6c05d604..3067c35d6e88e 100644 --- a/docs/graphql/manual/actions/create.rst +++ b/docs/graphql/manual/actions/create.rst @@ -1,5 +1,5 @@ .. meta:: - :description: Create actions with Hasura + :description: Creating Hasura actions :keywords: hasura, docs, actions, create Creating actions