Commit Graph

1363 Commits

Author SHA1 Message Date
Manas Agarwal
e008e113d3 Docs update for prometheus metrics addition of Postgres connections
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7090
GitOrigin-RevId: b5837af1960bfdb7c203b1d45b6548be1dfc31fe
2022-12-01 15:19:14 +00:00
Sean Park-Ross
6c2419c572 Docs: Updates Docusaurus to 2.2
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7110
GitOrigin-RevId: 1a2936c4b9bb49134f94bad821780cdfe9ff54a7
2022-12-01 14:59:59 +00:00
hasura-bot
24a117787b install manifests: update to Postgres 14
GITHUB_PR_NUMBER: 8754
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8754

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5367
Co-authored-by: arjunyel <11153289+arjunyel@users.noreply.github.com>
GitOrigin-RevId: ed4eff00c5a35f115c390fc44ac50b16f95d7fb4
2022-12-01 04:45:04 +00:00
Abby Sassel
74e30b8b0b Server/tests: Scalar Computed Fields > Postgres
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7094
GitOrigin-RevId: f5e632adc99ffa628a09d6703d2fdba9d2ade53e
2022-11-30 11:02:53 +00:00
Rob Dominguez
29e3a0eb1b docs: restructure cli section
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6971
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: 161396ef07386d6032232bb3e9926b7520f1b5ba
2022-11-29 23:39:12 +00:00
Puru Gupta
698190894f server: use kriti template to generate query param from list
## Description ✍️
This PR adds support to generate query params directly using a kriti template which can be used to flatten a list of parameter arguments as well.

### Changes in the Metadata API
Earlier the `query_params` key inside `request_transform` used to take in an object of key/value pairs where the `key` represents the query parameter name and `value` points to the value of the parameter or a kriti template which could be resolved to the value.

With this PR, we provide the user with more freedom to generate the complete query string using kriti template. The  `query_params` can now take in a string as well which will be a kriti template. This new change needs to be incorporated on the console and CLI metadata import/export as well.
- [x] CLI: Compatible, no changes required
- [ ] Console

## Changelog ✍️

__Component__ : server

__Type__: feature

__Product__: community-edition

### Short Changelog

use kriti template to generate query param from list of arguments

### Related Issues ✍
https://hasurahq.atlassian.net/browse/GS-243

### Solution and Design ✍
We use a kriti template to generate the complete query parameter string.

| Query Template | Output |
|---|---|
| `{{ concat ([concat({{ range _, x := [\"apple\", \"banana\"] }} \"tags={{x}}&\" {{ end }}), \"flag=smthng\"]) }}`| `tags=apple&tags=banana&flag=smthng`  |
| `{{ concat ([\"tags=\", concat({{ range _, x := $body.input }} \"{{x}},\" {{ end }})]) }}` | `tags=apple%2Cbanana%2C` |

### Steps to test and verify ✍
- start HGE and make the following request to `http://localhost:8080/v1/metadata`:
```json
{
    "type": "test_webhook_transform",
    "args": {
        "webhook_url": "http://localhost:3000",
        "body": {
            "action": {
                "name": "actionName"
            },
            "input": ["apple", "banana"]
        },
        "request_transform": {
            "version": 2,
            "url": "{{$base_url}}",
            "query_params": "{{ concat ([concat({{ range _, x := $body.input }} \"tags={{x}}&\" {{ end }}), \"flag=smthng\"]) }}",
            "template_engine": "Kriti"
        }
    }
}
```
- you should receive the following as output:
```json
{
    "body": {
        "action": {
            "name": "actionName"
        },
        "input": [
            "apple",
            "banana"
        ]
    },
    "headers": [],
    "method": "GET",
    "webhook_url": "http://localhost:3000?tags=apple&tags=banana&flag=smthng"
}
```

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6961
Co-authored-by: Tirumarai Selvan <8663570+tirumaraiselvan@users.noreply.github.com>
GitOrigin-RevId: 712ba038f03009edc3e8eb0435e723304943399a
2022-11-29 20:27:41 +00:00
Karthikeyan Chinnakonda
32a316aef7 server: provide an option to enable event triggers on logically replicated tables
## Description ✍️
This PR introduces a new feature to enable/disable event triggers during logical replication of table data for PostgreSQL and MS-SQL data sources. We introduce a new field `trigger_on_replication` in the `*_create_event_trigger` metadata API. By default the event triggers will not fire for logical data replication.

## Changelog ✍️

__Component__ : server

__Type__: feature

__Product__: community-edition

### Short Changelog

Add option to enable/disable event triggers on logically replicated tables

### Related Issues ✍

https://github.com/hasura/graphql-engine/issues/8814
https://hasurahq.atlassian.net/browse/GS-252

### Solution and Design
- By default, triggers do **not** fire when the session mode is `replica` in Postgres, so if the `triggerOnReplication` is set to `true` for an event trigger we run the query `ALTER TABLE #{tableTxt} ENABLE ALWAYS TRIGGER #{triggerNameTxt};` so that the trigger fires always irrespective of the `session_replication_role`
- By default, triggers do fire in case of replication in MS-SQL, so if the `triggerOnReplication` is set to `false` for an event trigger we add a clause `NOT FOR REPLICATION` to the the SQL when the trigger is created/altered, which sets the `is_not_for_replication` for the trigger as `true` and it does not fire during logical replication.

### Steps to test and verify ✍
- Run hspec integration tests for HGE

## Server checklist ✍

### Metadata ✍

Does this PR add a new Metadata feature?
-  Yes
  - Does `export_metadata`/`replace_metadata` supports the new metadata added?
    - 

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6953
Co-authored-by: Puru Gupta <32328846+purugupta99@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: 92731328a2bbdcad2302c829f26f9acb33c36135
2022-11-29 17:43:13 +00:00
Varun Choudhary
b74c2952dd console: enable naming convention check to enable/disable naming convention carded radio button
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6897
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 9dba07b1febf44fe10426e6c383cc8f3e0b799a6
2022-11-28 07:36:27 +00:00
Rahul Agarwal
5f2490b26c Adding features to the enterprise listing docs page
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7048
Co-authored-by: Tirumarai Selvan <8663570+tirumaraiselvan@users.noreply.github.com>
Co-authored-by: Marion Schleifer <5722022+marionschleifer@users.noreply.github.com>
GitOrigin-RevId: 916a20213a137d2f797648d12c6976351d67e59d
2022-11-25 15:49:13 +00:00
Tirumarai Selvan
4662d75bc6 revamp elastic connection pool docs
Restructure elastic connection pool docs to remove internal details and describe connection pooling benefits.

[Rendered](https://tiru-elastic-connection-pool.hasura-docs-mono.pages.dev/docs/latest/databases/connect-db/cloud-connection-pooling/)

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6960
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: 10c0ebfe1313fcf0c25631e6103978ce774502f8
2022-11-24 15:18:13 +00:00
hasura-bot
0df52d8497 docs: fix streaming subscription example (close #9241)
GITHUB_PR_NUMBER: 9242
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9242

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6984
Co-authored-by: Jeff Lambert <11539524+jflambert@users.noreply.github.com>
GitOrigin-RevId: ed0965a016e3957ecc91184595478741e1cc7b25
2022-11-24 14:33:03 +00:00
Kailash Sudhakar
458ce8b384 Build configs for preview builds through GKE
Build configs for preview builds through GKE

## Description ✍️

Moving the docs preview builds from Cloudflare to "websitecloud" Google Cloud Project which is currently handling the staging and production deployments:

The preview triggers are expected to be called only on changes to the docs folder

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6999
GitOrigin-RevId: 1699fe7677ebc03b8ce6338394e91d8e848640c3
2022-11-23 14:18:37 +00:00
Shahidh K Muhammed
e495c788b2 docs: update security team's email address
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6968
GitOrigin-RevId: d65596d0b5b6a36f4b2b35db4a50c3b6d0a91c72
2022-11-23 10:32:19 +00:00
Sean Park-Ross
26a5946622 Docs: Docusaurus update fixes
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6998
GitOrigin-RevId: 2b60acba07f8c0bdce116ec44986efcaa3f4587d
2022-11-23 07:54:19 +00:00
Abby Sassel
2b639406ca Misc docs compatibility updates
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6956
GitOrigin-RevId: 4f8db44a62efc1e0b7998e43a301424648928c0b
2022-11-21 15:46:44 +00:00
Abby Sassel
0343bfc9a7 Server/Test and document Azure Cosmos DB support
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6943
GitOrigin-RevId: 7fba24a0b711c1c54b93a944f97b2da8e202a2fd
2022-11-21 14:37:59 +00:00
paritosh-08
0cc66d0f31 docs: add event trigger metrics
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6898
GitOrigin-RevId: f16577e2d964937287e1cbbd582467e908e9fd69
2022-11-21 08:27:28 +00:00
Adron Hall
91e483123d Reordered the prereq for getting started with Athena.
## Description

Reordering the flow so that things are presented in the order in which a user would arrive at the particular step.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6935
GitOrigin-RevId: 5c04bc4142f3417cfb2eab0d057d0e264adf3f6b
2022-11-18 16:47:12 +00:00
Sean Park-Ross
619cc552f0 Updates Docusaurus to 2.1
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6390
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
Co-authored-by: surendran82 <26085612+surendran82@users.noreply.github.com>
GitOrigin-RevId: ca59e788e7d16bf74389c00a51db18604350b483
2022-11-18 16:02:38 +00:00
Stef Moreno
387a73b11f docs: link to DB matrix to individual DB sections
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6909
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: ab49f8aa5c15da285cfab7e67baffaae52d83cad
2022-11-18 00:13:54 +00:00
Abby Sassel
7df9dc5832 NDAT-295 Cleanup Tests.Subscriptions structure
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6882
GitOrigin-RevId: 854d30dc0a1859c08f082df4d3c375325c59cf9c
2022-11-16 13:24:15 +00:00
hasura-bot
1af1a52480 docs: update upgrade-ce-to-ee.mdx
GITHUB_PR_NUMBER: 9212
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9212

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6887
Co-authored-by: Chris Toth <97546117+chris-hasura@users.noreply.github.com>
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: 41b7567b9f439e25284301be34c70ece43265740
2022-11-15 22:39:49 +00:00
Rob Dominguez
1269652cbc docs: remove mysql docs and all references
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6716
GitOrigin-RevId: 3a7ed0e4c8d723a8c10938176a0fab269760e785
2022-11-15 17:35:04 +00:00
Sean Park-Ross
a7584ccd79 Docs: Wiki add Hasura features and headings info
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6848
GitOrigin-RevId: ac23388362bcb118f9ee4d8d539adb161835070f
2022-11-15 16:18:39 +00:00
Rakesh Emmadi
2e9c93bed1 docs: elastic connection pooling in cloud
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6072
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: f8da61285ab5d6318f1e691c8f77b4ed1f1ce77c
2022-11-15 13:24:55 +00:00
Abby Sassel
b7a09a42c1 NDAT-293 Update feature matrix with features tested in api-tests suite
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6855
GitOrigin-RevId: 37f8193b8528f90955d55d2812f6f45afca054c8
2022-11-14 14:37:30 +00:00
Harish Nair
4b90c8219a docs: add note on partial unique index support
>

## Description ✍️

Hasura currently does not support the use of partial unique indexes in upsert mutation as can be seen in [this issue](https://github.com/hasura/graphql-engine-mono/issues/4165). Call out this fact in the documentation.

## Affected components ✍️

-  Docs

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5019
GitOrigin-RevId: adfb19acfe3f920bcc5865ae4424c3ce148c5b7c
2022-11-10 18:01:29 +00:00
Rob Dominguez
4e621fa48a docs: resolve docker networking after guides restructure
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6823
GitOrigin-RevId: 7588f2b73a699565b38a6ac9ef58a708a4ad40e4
2022-11-10 16:32:01 +00:00
hasura-bot
a9b980a705 Fix typo
GITHUB_PR_NUMBER: 9143
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9143

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6816
Co-authored-by: Rowland I. Ekemezie <15085641+rowlandekemezie@users.noreply.github.com>
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: ae727cb8526d5377997e94582dd49a4833fcdbe1
2022-11-09 22:18:32 +00:00
Rob Dominguez
05df0c73f6 docs: fix link from hotfix on deployment
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6810
GitOrigin-RevId: 26259ee3c1458c460caab7135a7a4f3f8f4600d1
2022-11-09 15:43:06 +00:00
Adron Hall
027cf7c0fb Adding Experimental feature flag and URI path for docker compose files.
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6797
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: ce1a6ee81b41b4fbcc5f1d08de0de42e4ed67438
2022-11-09 12:33:36 +00:00
Stef Moreno
4cd6eaf868 docs: remove best practice references
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6752
GitOrigin-RevId: 7d8a631ac540946846957fe50ce2c2464a0a1755
2022-11-08 21:21:09 +00:00
Sean Park-Ross
09c6c9b6a4 Docs: Fix a missing image in the Athena PR
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6787
GitOrigin-RevId: 856c045a32aa6e0903e49b935156bf22a0ac2999
2022-11-08 17:11:27 +00:00
pranshi06
7b7845f697 server: add jwk-refresh-log type to default enabled logs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6775
GitOrigin-RevId: 23fbeceb91e51380ccf0bb5830a4471d8964a3f5
2022-11-08 16:48:44 +00:00
Rikin Kachhia
d2e5fa60a2 docs: update ms sql server m1 mac support warning
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6515
GitOrigin-RevId: d07e73ab2456f22d0672273ae3669da69b8a9037
2022-11-08 12:28:30 +00:00
pranshi06
fd6aa0a266 server: add jwk-refresh-log as configurable log type
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6705
GitOrigin-RevId: 1f6f45ce555cefc24836a2fc5363660e351fa13b
2022-11-08 07:37:50 +00:00
Adron Hall
4d041ffd20 docs: adding amazon athena connector beta - first draft.
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6534
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
Co-authored-by: Brandon Martin <40686+codedmart@users.noreply.github.com>
GitOrigin-RevId: fb316b24896bd46dbd8c5d6d1b4cdcd938f2f504
2022-11-08 03:55:46 +00:00
Puru Gupta
a4eb5ad95d server: improve DX for heroku integration
## Description ✍️
This PR aims to improve the developer experience when using a heroku postgres instance as source database. Better error messages and relevant documentation are added as a part of this PR.

## Changelog ✍️

__Component__ : server

__Type__: enhancement

__Product__: community-edition

### Short Changelog

Improve DX for heroku integration

### Related Issues ✍
https://hasurahq.atlassian.net/browse/GS-202

### Steps to test and verify ✍
- Add a new heroku postgres instance as DB source in Hasura
- Try adding an event trigger
- Improved error message will be emitted:
```json
{
    "arguments": [],
    "error": {
        "description": null,
        "exec_status": "FatalError",
        "hint": null,
        "message": "pgcrypto can only be created in heroku_ext schema. Hint: You can set \"extensions_schema\" to provide the schema to install the extensions. Refer to the documentation here: https://hasura.io/docs/latest/deployment/postgres-requirements/#pgcrypto-in-pg-search-path",
        "status_code": "P0001"
    },
    "prepared": false,
    "statement": "CREATE EXTENSION IF NOT EXISTS pgcrypto SCHEMA public"
}
```

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6630
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: a46d7c129a4e0378b7f33445f9bda11e0bddbd74
2022-11-08 03:55:30 +00:00
Shraddha Agrawal
4f0ee2a648 docs: add Hasura Cloud Billing estimation docs
This PR adds user facing docs that explain how we calculate billing for our customers. It details which operations count in data passthrough based on which we charge customers.

Solves Jira issue: https://hasurahq.atlassian.net/browse/CPS-177

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6229
Co-authored-by: aayshasura <109507451+aayshasura@users.noreply.github.com>
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: a0f0bcd5ee3f07b5e77c7c3768f55481f1aa6687
2022-11-08 03:55:23 +00:00
hasura-bot
78c36392eb docs: add guide on performance tuning (fix #4805)
GITHUB_PR_NUMBER: 9052
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9052

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6163
Co-authored-by: Aniketh Varma <55805574+aniketh-varma@users.noreply.github.com>
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 0e9fac8795211e211aa9909d4f18dcfdc261f1b9
2022-11-08 03:55:15 +00:00
Naveen Naidu
0961e4fd74 docs: mssql event trigger docs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4321
Co-authored-by: Abhijeet Khangarot <26903230+abhi40308@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: 9cba9e90465e95bf587469554f508f272391cb0f
2022-11-08 03:55:07 +00:00
Daniel Harvey
e6c3113a43 [server]: feature flag to remove _stream fields from schema
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6698
GitOrigin-RevId: d2b80900d06353647505256fc351a07e6f7cd5f7
2022-11-04 13:10:35 +00:00
Rob Dominguez
79b58d4e7e docs: add algolia to 404
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6655
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: b174efd44e4e50517ef4c3d4d023c00cb4d674f1
2022-11-03 19:46:11 +00:00
Karthikeyan Chinnakonda
d7609233c4 Rename get_event_invocations to get_scheduled_event_invocations
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6513
Co-authored-by: Varun Choudhary <68095256+Varun-Choudhary@users.noreply.github.com>
GitOrigin-RevId: 172ba6152ed77b90eeec9183a3fb4c6f177e45b3
2022-11-03 10:23:11 +00:00
Tirumarai Selvan
66b63ac828 document default value for events fetch interval
Same as title

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6686
GitOrigin-RevId: 6c8edaae5d9d005f098d7cded14f991b5c22c881
2022-11-03 08:12:47 +00:00
Rob Dominguez
1e1592c254 docs: incorporate fixes and reorder cloud-dbs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6673
GitOrigin-RevId: 0eebba2a04f9109734c28c9b5da6d16e00e60ee1
2022-11-02 21:29:44 +00:00
Marion Schleifer
7b4a7917ce docs: fix typo in query tags docs
[Slack conversation](https://hasurahq.slack.com/archives/C041B2DLHJS/p1667350236988359?thread_ts=1667347400.158339&cid=C041B2DLHJS)

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6658
GitOrigin-RevId: 2861aae877d125150e92a9f32d370ed2b1894c10
2022-11-02 08:02:19 +00:00
Rob Dominguez
600aaf9358 docs: add sla and update index
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6328
GitOrigin-RevId: 44aad1bee8189092901cd0b7890ab2102ec4ee8e
2022-11-01 18:04:34 +00:00
hasura-bot
d047ecefe2 docs : Updated screenshots in the docs fixes #8998
GITHUB_PR_NUMBER: 9148
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9148

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6500
Co-authored-by: Ayush Bajaj <68808280+BajajAyush@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 85eb4ceb11c5699ae8435740c0232d50ac623c6f
2022-11-01 17:33:34 +00:00
Gil Mizrahi
925db48839 update feature matrix roach distinct
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6631
GitOrigin-RevId: 1b91337c49621a7f3f453a264ad2ed1c8055c648
2022-10-31 15:21:47 +00:00
Varun Choudhary
2bc05c1697 docs: add action response transform
This PR adds docs for the console support of action response transform.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6622
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: 215b6df9fc7e7f27e4cbd9798ba5a97d66b91138
2022-10-31 12:30:05 +00:00
hasura-bot
c92988bcbf Updated Screenshots In Docs (close #8883)
GITHUB_PR_NUMBER: 9087
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9087

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6264
Co-authored-by: sujithkumardola <47243708+Sujithkumardola@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: bccfb25a64237ffab44f89b462fc989577ee396a
2022-10-31 11:59:45 +00:00
Gil Mizrahi
b1894403a2 update the docs to exclude distinct_on for cockroach
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6604
GitOrigin-RevId: 99fe8d32faa950fe34e64e60e30875d1fa38713b
2022-10-31 10:53:42 +00:00
hasura-bot
659b340ffa partial submission for docs:capitalization of headings #8885
GITHUB_PR_NUMBER: 9072
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9072

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6201
Co-authored-by: Phuong-Cat Ngo <44314126+catcecilia@users.noreply.github.com>
GitOrigin-RevId: 96fa8807ded210e3d384cb7d4181088804c01fb6
2022-10-28 17:42:52 +00:00
Stef Moreno
3ceb9171e1 docs: fix MS SQL connection string
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6607
GitOrigin-RevId: 2884588c41836352b65fe8226f2a91c8bdc525ab
2022-10-28 16:27:50 +00:00
Rob Dominguez
712d3e4a9d Docs: Reorganize guides, tutorials, resources section
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5273
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: c6b7bdaba648d49f37c315a5dd53497f42b6cbd6
2022-10-28 14:00:51 +00:00
Rob Dominguez
b30dc55321 docs: add alloydb guide
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6556
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 783a111ef13d16f55806929ada5fafd9a339aa1d
2022-10-27 19:45:43 +00:00
Daniel Harvey
2eb021fda5 [docs] Include details on how to setup Network Authorization on CRDB serverless
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6554
GitOrigin-RevId: 5ed581015e8f7d4f4b3842ce0758dd65c394e573
2022-10-27 18:26:01 +00:00
Sean Park-Ross
6f484431fc Docs: Add FAQs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5371
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: 08c5f9cf9926a97a200270065b05809d9e76be1f
2022-10-27 18:09:47 +00:00
hasura-bot
a649967d40 Update enable-https.mdx [ADD Traefik] #7571
GITHUB_PR_NUMBER: 9064
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9064

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6177
Co-authored-by: Azanul Haque <42029519+Azanul@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
Co-authored-by: Marion Schleifer <5722022+marionschleifer@users.noreply.github.com>
GitOrigin-RevId: 90dc86dae4b3c5a63996bb32de0d48045ad9dd07
2022-10-27 15:41:52 +00:00
Rob Dominguez
7891e3cee2 docs: add cosmos db cloud guide
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6507
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: bc8e41a3641f960a72e3467425d33cb4f377f884
2022-10-27 10:05:25 +00:00
Rob Dominguez
1c8c88981e docs: improve Heroku FAQ
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6427
GitOrigin-RevId: 1c4f473b31a607e85524f48dfa2b6ae6e8312d96
2022-10-27 10:00:07 +00:00
Rob Dominguez
ce30f615a9 docs: fix admonition
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6560
GitOrigin-RevId: 8175bdccfc5ff36c2942cd47996a7b044f810084
2022-10-27 09:56:30 +00:00
Samir Talwar
78e0480bb2 docs: Info on (lack of) subscription support for CockroachDB documentation.
And some small fixups while I was in the area.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6559
GitOrigin-RevId: 97612af20e18c3ea9af364ec519f7891f4a7aa80
2022-10-26 20:52:20 +00:00
hasura-bot
a2e6e50e27 Fix broken links
GITHUB_PR_NUMBER: 9138
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9138

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6462
Co-authored-by: arpitpandey0209 <9442768+arpitpandey0209@users.noreply.github.com>
GitOrigin-RevId: 85ce1a190477803f553deb31c1c95b512fa3fca0
2022-10-26 14:22:19 +00:00
Chris Martin
28eb51939d Chrism/docs/api allowed methods
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6213
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: 9684940fb3b48f85e8176651d4260e0f28fd0d66
2022-10-24 18:34:05 +00:00
hasura-bot
06849912a3 docs: add docs to connect ms sql server on azure to hasura
GITHUB_PR_NUMBER: 9137
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9137

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6453
Co-authored-by: Alok Kumar Sahoo <45600289+aloks98@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: 1a038bbe09e1ef83c1bdf788cbd844b93078c39e
2022-10-24 17:30:58 +00:00
Rob Dominguez
2efc24e823 docs: clarify env var instructions for cockroach using ssl
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6502
GitOrigin-RevId: b3691a0b976e954ab35e67a58627bcdb1124b077
2022-10-24 17:16:12 +00:00
Daniele Cammareri
484e3c25e7 docs: add type generator doc
## Description ✍️

Add type generator doc to action section.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6459
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 0d924c5f34b1f6ef09b37843fa2aae6e5e1d8d19
2022-10-24 16:01:06 +00:00
Erik Magnusson
63e576cce3 docs: updated cloud docs to include ssl specific information
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6496
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: b45adcead78227d6321ee11232578357fb4ea696
2022-10-24 15:01:46 +00:00
Stef Moreno
ef386ccee1 docs: update outdated heroku screenshots
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6479
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: e5040782501ac64f537ea2fb5d02eee02d602b21
2022-10-21 19:55:27 +00:00
Raju Sunny
28b93adbe9 docs: best practices db observability
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6301
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: c84755c70e66ee04ad8274f8a2ac94d2cfab00fd
2022-10-21 19:16:01 +00:00
paritosh-08
b8bbb8a621 server: optional query params in REST connector
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6381
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: b777b373b2fbe19ceb32f812d4eaba45ef0a5a58
2022-10-21 18:40:48 +00:00
Samir Talwar
c3afa0fdd7 Install and use ODBC Driver 18 for SQL Server (msodbcsql18).
This installs the ODBC Driver 18 for SQL Server in all our shipped Docker images, and update our tests and documentation accordingly.

This version supports arm64, and therefore can run natively (or via Docker) on macOS on aarch64.

`msodbcsql17` is still installed in production-targeted Docker images so that users do not _have_ to migrate to the new driver.

Nix expressions are packaged for the new driver, as it is not yet available in nixpkgs.

In this version, [the default encryption setting was changed from "no" to "yes"](https://techcommunity.microsoft.com/t5/sql-server-blog/odbc-driver-18-0-for-sql-server-released/ba-p/3169228). In addition, "mandatory" and "optional" were added as synonyms for "yes" and "no" respectively.

I have therefore modified all connection strings in tests to specify `Encrypt=optional` (and changed some from `Encrypt=no`). I chose "optional" rather than "no" because I feel it's more honest; these connection strings will work with or without an encrypted connection.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6241
GitOrigin-RevId: 959f88dd1f271ef06a3616bc46b358f364f6cdfd
2022-10-21 16:25:04 +00:00
hasura-bot
be0d64b5d8 Update troubleshooting.mdx adding client-side error solution
GITHUB_PR_NUMBER: 9077
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9077

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6216
Co-authored-by: Utsav Paul <91927689+Smartmind12@users.noreply.github.com>
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: 3e1c1c089bdd0755203dba859dfca85baf38d96d
2022-10-20 19:05:50 +00:00
Abby Sassel
639ce90c4c NDAT-164 CockroachDB 'Getting Started' Docs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6386
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: 92b7fce2e63c0baab84271d74116a27187dfa270
2022-10-20 17:07:40 +00:00
Luca Restagno
9eef32d957 docs: update hasura data types for > 53 bit types
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6418
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: f697c5ef96ffa9f70eecaf9af5b9658ae4db5aea
2022-10-20 15:43:14 +00:00
Shraddha Agrawal
34e731d296 docs: remove duplicated warnings in preview app docs
This PR removes the duplicate warnings in preview app docs.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5068
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: eac156c9423f60c7b1a1147f4b2bff1a832a7d6d
2022-10-19 13:25:25 +00:00
Chris Martin
bf87246126 Chrism/docs/guide bestpractices metadata
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6027
GitOrigin-RevId: 6186ea1de1964a4b91b05a8417983ec312ca53f7
2022-10-18 18:59:34 +00:00
Rikin Kachhia
53af3157fc docs: point EE release notes to changelog site
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6421
GitOrigin-RevId: e29fb208cde605ea0adcd124264abe3ee3711208
2022-10-18 14:54:21 +00:00
Varun Choudhary
7dbb3ab80b docs: update role-based allow list version for console support
Edit the note [here](https://hasura.io/docs/latest/security/allow-list/#role-based-allow-list) to make it clear that console support for role-based allow list is available from `v2.13` and server support is available from `v2.3`.

**New note looks like -**

![Screenshot from 2022-10-18 12-35-19](https://user-images.githubusercontent.com/68095256/196362090-a866ae70-1464-4836-9237-aa603924a689.png)

**Related issues**

https://hasurahq.atlassian.net/browse/GS-191

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6402
GitOrigin-RevId: 5e1c74b275b0535a6156c3999be98aaeccfb3a68
2022-10-18 12:04:46 +00:00
Rakesh Emmadi
5666161ac9 server/multitenant: resize sources' connection pools when a cloud project is scaled, global connection pooling
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5708
Co-authored-by: Naveen Naidu <30195193+Naveenaidu@users.noreply.github.com>
Co-authored-by: pranshi06 <85474619+pranshi06@users.noreply.github.com>
Co-authored-by: Puru Gupta <32328846+purugupta99@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
Co-authored-by: Anon Ray <616387+ecthiender@users.noreply.github.com>
GitOrigin-RevId: 513d497548d89b397d4a299355b11607daec3c7e
2022-10-17 08:06:12 +00:00
Shraddha Agrawal
60411b95e5 docs: update region migration docs
fix for Jira ticket: https://hasurahq.atlassian.net/browse/CPS-251

This PR adds more context why user's should change the region of their cloud project to a region closer to their database. This is part of the changes of the MRAU project.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6312
GitOrigin-RevId: 3868b0659bc6cfcdc4861bda8433ed342049c6b5
2022-10-14 13:11:36 +00:00
Rob Dominguez
c326cf4637 docs: reformat links
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6331
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: 6c059c65f3c260c15cc565d47e13a3a479ca766c
2022-10-13 19:48:32 +00:00
Rob Dominguez
35ce169821 docs: add tl;dr and improve page structure
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6345
GitOrigin-RevId: 0050ee4884713d67059145436cf8c5de64ded896
2022-10-13 17:00:17 +00:00
Krushan Bauva
63f90cc93c server: add api limit - batch limit
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6183
Co-authored-by: Naveen Naidu <30195193+Naveenaidu@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: 517766e10a3e94a54b754df69c47c61232d8dbb2
2022-10-13 16:54:26 +00:00
hasura-bot
fba98a8217 docs: update docker-compose spelling, close #8886
GITHUB_PR_NUMBER: 9046
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9046

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6157
Co-authored-by: Amit Kumar Sharma <91947037+amit-ksh@users.noreply.github.com>
GitOrigin-RevId: b2172918456617ce4da4856abb1325180b19ecdd
2022-10-12 19:23:12 +00:00
Rob Dominguez
ac3c054b27 docs: add neon heroku-specific migration guide
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6302
GitOrigin-RevId: 5dfc0c6a194f42c48a5226902e02b80806cf35b3
2022-10-12 15:10:02 +00:00
Tom Harding
97a9ce842a Update documentation to stop supporting Postgres 9.5
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6317
GitOrigin-RevId: 6f098f26943d0e2cba1725aaf2e76aaf1f50ebef
2022-10-12 13:37:23 +00:00
Rob Dominguez
43c283d6b2 docs: fix broken link causing build fail
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6300
GitOrigin-RevId: d79391392abd162af1d4ec67373331e5051e23e5
2022-10-11 19:38:33 +00:00
paritosh-08
5c774cf839 server,pro: fix batch_size behaviour for auto event trigger log cleanup
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6279
GitOrigin-RevId: 20b8e6a22a26d97cd78655027aa2f30b7838462d
2022-10-11 19:27:53 +00:00
Sean Park-Ross
4c3775ecb8 Docs: FAQs for Heroku free resource deprecation
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6274
Co-authored-by: Marion Schleifer <5722022+marionschleifer@users.noreply.github.com>
GitOrigin-RevId: 6ce9851df79ab1da8fcb3a476b933770f2f2331d
2022-10-11 18:15:52 +00:00
Sean Park-Ross
3071787cf6 Docs: Reorder Neon in menu, Add logo to cloud db index, cap Database in cloud db docs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6298
GitOrigin-RevId: eceba15c687f8deb6599ba845df17147bbbe87b9
2022-10-11 18:08:28 +00:00
Sean Park-Ross
de1f820511 Docs: Metadata directory format add missing files
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5564
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 6d1c188a4f7fbc74317dfa1e0bc25634f4306eef
2022-10-11 18:02:00 +00:00
nevermore
08a46714d3 docs: add Neon integration docs, remove Heroku docs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6162
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: 1c80b85df1f474e54cda332c98b93adc4339ac09
2022-10-11 11:59:42 +00:00
Gil Mizrahi
4a321e2459 docs: functions -> custom functions
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6244
GitOrigin-RevId: 999517c28791a0b8f3de1843f02232338ad00fa9
2022-10-07 19:23:41 +00:00
Rob Dominguez
9c48313f81 docs: add SLA and reorder pages
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6240
GitOrigin-RevId: 406303a03e5258c20baa5c49f52be8d6262a7535
2022-10-07 16:43:12 +00:00
hasura-bot
7b6dae7e8e docs: Fix minor grammatical errors in faq.mdx
GITHUB_PR_NUMBER: 9075
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9075

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6214
Co-authored-by: Varun <98093422+kVarunkk@users.noreply.github.com>
GitOrigin-RevId: d4bffff3120176e765f4050d77807bffc22c9bc3
2022-10-07 16:12:16 +00:00
Sean Park-Ross
494e270227 Docs: Wiki Restructure and remove Sphinx RST - WIP
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6059
GitOrigin-RevId: c527d01b7af8ef98fa3859930115ec44d993e444
2022-10-07 13:58:26 +00:00
Sean Park-Ross
1dc95b8c4a Docs: Wiki add documentation 'mission statement'
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6051
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 686ba92c48e15a43f37d28308730f7073e327b7f
2022-10-07 13:16:15 +00:00
Sean Park-Ross
84c38e8a5c Docs: Fix Docker compose version issue in getting started
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6236
GitOrigin-RevId: 33ac857a6d0b0e0999de09e61a40e307d00f1574
2022-10-07 06:03:06 +00:00
hasura-bot
4d462b7bbc docs: Fix minor typo
GITHUB_PR_NUMBER: 9049
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9049

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6160
Co-authored-by: Matt Dailis <1189602+mattdailis@users.noreply.github.com>
GitOrigin-RevId: fd2ec7ca7b59d2c8964d372e4a61695aac5a4455
2022-10-02 10:50:08 +00:00
Auke Booij
b03ed983f1 Remove spaces before colons in error messages and descriptions
This PR is the result of running the following commands:
```bash
$ git grep -l '".* : "' -- '*.hs' | xargs sed -i -E 's/(".*) : "/\1: "/'
$ scripts/dev.sh test --integration --accept
```

Also manually fixed a few tests and docs

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6148
GitOrigin-RevId: cf8b87605d41d9ce86613a41ac5fd18691f5a641
2022-10-01 14:48:58 +00:00
Sean Park-Ross
f7183302f5 Docs: New Getting Started > How it Works page (WIP)
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5251
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: aceb6dcae6d0f10edc051e2f25073031826934ac
2022-09-30 14:03:35 +00:00
hasura-bot
fbdab80216 update-digital-ocean-one-click-droplet-link
GITHUB_PR_NUMBER: 9039
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9039

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6137
Co-authored-by: Jacky Lai <15357659+jackylai87@users.noreply.github.com>
GitOrigin-RevId: caab58b17b65e887b56271f77296138ec4bef3f2
2022-09-30 08:59:34 +00:00
Rob Dominguez
cc015df631 docs: restructure heroku page and add migration links
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6104
GitOrigin-RevId: ed29b5c407b0edb5300455f4996c2a2efd92e51c
2022-09-29 15:55:16 +00:00
Rob Dominguez
0c55bf9b73 docs: add db-migration links to providers
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6103
GitOrigin-RevId: 05ea8eb4a4d40a0fac069996724bb6378c60e3fc
2022-09-29 14:24:26 +00:00
awjchen
5150920fc2 docs: Correct histogram buckets for event queue time
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6108
GitOrigin-RevId: d8668acc003425c10432dcd45df23e9ddae4e68c
2022-09-29 12:18:24 +00:00
Rob Dominguez
0fdbca8d3e docs: add PR checklist
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6084
GitOrigin-RevId: c55f9a2935a270a2faa4c937bf0bada495772120
2022-09-28 13:06:36 +00:00
Rob Dominguez
327d81e6da docs: replace cloud-db logos and add titles
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6058
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 1609e2a4f11851be55f400db8c43343d35940bbc
2022-09-27 14:57:37 +00:00
Daniel Harvey
f42bc4b816 server: feature flag for disabling TABLE_updates fields
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6039
GitOrigin-RevId: fcbafe2e4b8cf72d739033b372b536d59c398c4e
2022-09-26 13:25:37 +00:00
Marion Schleifer
c526ff5754 docs: add note to schema index
## Description ✍️

Rishi asked me to add this note to docs:

```
Hasura can recognize and return UTF-8 encoded string-types from your database.

If the columns in your database have an encoding other than UTF-8, then your API clients may get garbled or incorrect values for queries made on those columns.
```

I rephrased it a bit. Needs to be checked if it still means the same.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5842
GitOrigin-RevId: cc393119569b169d5578944c66b1965a7778ee39
2022-09-26 08:41:44 +00:00
Sean Park-Ross
73b44484db Docs: Clarify Databases > Getting Started > BigQuery docs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6023
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: ce87ace7ec73f37fe9137fd24da42e0a33f3c198
2022-09-23 15:31:11 +00:00
Philip Lykke Carlsen
46ef2e5d2a feat: Document aggregation predicates
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5894
GitOrigin-RevId: 2a06f7afdec6741aca7464eee42617aca920b9ad
2022-09-23 13:49:49 +00:00
Rob Dominguez
eaa6106a8d docs: add supabase and enterprisedb guides
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6025
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: b4f5fea1ae12f036442e69c27572742b1d14780b
2022-09-23 12:15:43 +00:00
Sean Park-Ross
0ddad5b157 Docs: Fix dedicated VPC available on (Small)
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6020
GitOrigin-RevId: fd3f65a0418cebb6beed9b9bded36a325c1adc57
2022-09-23 10:00:41 +00:00
hasura-bot
1dce311820 docs: add data source config explanation for local dev
GITHUB_PR_NUMBER: 8941
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8941

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5806
Co-authored-by: Shawn Erquhart <2112202+erquhart@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: 51cd587f227e47a155655600ec85fa6df759c61d
2022-09-23 09:28:10 +00:00
Sean Park-Ross
e0c0d7b73f Docs / Install-Manifests: Fix Azure Deployment Buttons
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6017
GitOrigin-RevId: ab3bb95f7243d96504adc05b6b20e0aa8229bf65
2022-09-22 20:30:05 +00:00
Rob Dominguez
8eaa447bbb docs: update multiple mutations in a request
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5969
GitOrigin-RevId: a739dd8a17a62e614219f785c9ba708f2ebf3e8f
2022-09-22 12:21:13 +00:00
Sean Park-Ross
6329852db6 Docs: Improve Permission rules including disable root fields doc
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5769
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 81f32e1377aefc0a507052d2a583e3561d7b213c
2022-09-22 11:43:46 +00:00
Raju Sunny
b69bd09ba4 docs: Adds observability best practices 1.0 to own branch
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5944
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: 341f5362eb424098fe51d73d045a9381bacc31ef
2022-09-22 02:31:06 +00:00
paritosh-08
1c7e19c209 server/docs: event trigger log cleanup | remove default for clear_older_than
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5998
GitOrigin-RevId: 1376fd2192c7daaf73e8099cdb2f1aab4b8c3cd1
2022-09-21 17:29:55 +00:00
paritosh-08
8053de81ac docs: event trigger log cleanup | update image
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5994
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 146b267ecdbc2646359b68849aa0bcdda215c5fb
2022-09-21 16:13:38 +00:00
Rob Dominguez
0646b8ef86 docs: remove custom-docker-images from deployment and references
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5993
GitOrigin-RevId: f0d406fa2b4ee269cf87b6d3c2c4b0c4429b7e1a
2022-09-21 15:46:52 +00:00
Rob Dominguez
d88453194e docs: add heroku migration page to cloud db guides
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5970
GitOrigin-RevId: 838702312ef30704a70da220870bcda1de928fad
2022-09-21 15:30:28 +00:00
Rikin Kachhia
e369f567c3 docs: add support for showing section local TOC
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5941
GitOrigin-RevId: e05b5d60624d755dc38d662919bde55826cde434
2022-09-21 14:38:40 +00:00
paritosh-08
35ddcbec31 docs: event trigger auto cleanup api docs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5867
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: 9c6c58ec97ca43a4d8b9c3a3d61cf8e60d7cc7ea
2022-09-21 13:37:59 +00:00
Varun Choudhary
633cfde310 console docs: add docs for role based allow list
Add docs for role-based allow list

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5907
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: b7a6af1e9da23dada7dc6edef7f93e954fafa611
2022-09-21 13:09:23 +00:00
Rob Dominguez
e7e19c7678 docs: remove beta references for ee
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5971
GitOrigin-RevId: 825da7bf073205cb290c5c7eedc914004ceb658a
2022-09-21 13:03:18 +00:00
paritosh-08
d5739c5e13 docs: event trigger auto cleanup usage docs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5945
Co-authored-by: Tirumarai Selvan <8663570+tirumaraiselvan@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: a3448bce55074d089e7ffc6de3c67e59a34ed581
2022-09-21 12:18:14 +00:00
hasura-bot
e32bcb183c docs: Clarify Cloud project time limit note
GITHUB_PR_NUMBER: 8987
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8987

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5973
Co-authored-by: dsandip <24300818+dsandip@users.noreply.github.com>
GitOrigin-RevId: 9cf4cc5598bb6f9c9511d59a678f1dfe6031b76d
2022-09-21 11:01:32 +00:00
Rob Dominguez
8bd343d67c docs: update ERD for security best practices
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5943
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 81b1b8e308bbe8a78b3d63c61b08de4050311782
2022-09-20 20:51:58 +00:00
Sean Park-Ross
56589b9f9a Docs: Add Hasura Cloud section in deployment. Add disaster recovery information
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5712
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: f50f51172675153db388e360e85e31190dc77f3a
2022-09-16 17:10:37 +00:00
Sean Park-Ross
cabc8bd3ce Docs: Change some Citus Hyperscale references to Postgres and amend info to specify Postgres flavours
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5893
GitOrigin-RevId: 0a8bb0fa7df101691e71ddf4b16953893e59499d
2022-09-16 16:11:53 +00:00
Rob Dominguez
bd60a01571 Docs: update feedback component
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5856
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: 5b2ca6a4079d53a2c38fc99436d59978195da03d
2022-09-16 16:01:07 +00:00
Poojan Savani
d0af976ac2 Remove cron_trigger/scheduled_events using scheduled_time field
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5915
GitOrigin-RevId: ea4fa8eaf47185465bb9545c07dc4dbaab91b718
2022-09-16 15:24:04 +00:00
Rob Dominguez
d67e717524 Docs: update cloud db guides
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5901
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: a9c5cb43437d31c08b2ced0ea156f56a4224ba5d
2022-09-16 13:50:46 +00:00
Rikin Kachhia
bd071ddc7f docs: update Kriti reference
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5898
GitOrigin-RevId: ef2227eea519dde332eb20ecb5610413576599dc
2022-09-16 09:07:51 +00:00
Mohd Bilal
9552b38d1b Docs: Update CLI docs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5585
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 655bdb574eb609fbef79a4dd68be77449585db44
2022-09-15 05:37:46 +00:00
Chris Martin
2736ee27b9 Guides - Best Practices for Production Environments
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5695
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 108ecf326678f717c0e496d5120371a6e0a14845
2022-09-14 16:41:48 +00:00
Sean Park-Ross
8e91478d94 Docs: New What's New Section
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5455
GitOrigin-RevId: d3782b934989e6893416cf3044e48146461edf1d
2022-09-13 20:23:43 +00:00
Rob Dominguez
18f437d265 Docs: update contributing guide
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5778
GitOrigin-RevId: 6af33faa0792065f410cb76285f55f6318ff80a6
2022-09-12 16:26:03 +00:00
Rob Dominguez
2654a1b4f4 Docs: remove experimental-feature note for streaming subs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5779
GitOrigin-RevId: 56892828b29addfe1c26583c2b811b0becbfd922
2022-09-09 07:17:44 +00:00
Rob Dominguez
0d2a09d841 Docs: update wget and curl for ee from beta to stable
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5801
GitOrigin-RevId: f234289c12e284e8b7bb39301850eb2bc577df12
2022-09-08 08:52:01 +00:00
Sheila Babadi
e1b1bd0fd4 docs: add description of environment name project setting
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5807
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: fb52354fa37e1d1ac77dbbcc30e0947e7cb2752e
2022-09-08 07:53:00 +00:00
Lyndon Maydwell
77789e303f Kriti Documentation
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5230
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: dea3876b74f822ffe080933c6b9814f544fc968d
2022-09-06 15:47:18 +00:00
Rikin Kachhia
338d96dbd6 docs: fix formatting issues
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5758
GitOrigin-RevId: aef11aa94a1af559d1d68aa85b521990507ce9a3
2022-09-05 15:44:47 +00:00
awjchen
78cf1d544e server/pro: enable health check on data sources and report via logging and API
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4868
Co-authored-by: Rakesh Emmadi <12475069+rakeshkky@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: b8d43e3f7d977c4bb37b8506ac87ce7bf289d542
2022-09-02 06:34:29 +00:00
hasura-bot
60e62165cd docs: streaming subscription example close #8552
GITHUB_PR_NUMBER: 8706
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8706

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5119
Co-authored-by: skovati <49844593+skovati@users.noreply.github.com>
GitOrigin-RevId: 8554d80e1b316182885d0be5a5d00c184ab8ca10
2022-09-01 14:51:39 +00:00
Rob Dominguez
ee0b447cd5 docs: update contributing guides
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5703
GitOrigin-RevId: ab94acb82739b132a6685c1b030bde2d37541ab9
2022-09-01 13:54:20 +00:00
Vishnu Bharathi
62888e74ef docs: deprecate changelog file and add missing link
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5714
GitOrigin-RevId: 1816440071e1817e07e7cd58a9ed20866351a14e
2022-09-01 12:31:29 +00:00
Rikin Kachhia
9be022cf12 docs: update multiple updates section
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5672
GitOrigin-RevId: c9e85579780c54b2a25c9c0d948de674fe024d3d
2022-09-01 09:24:09 +00:00
hasura-bot
1e8b2d74ec docs: fix typo in server config reference document
GITHUB_PR_NUMBER: 8897
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8897

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5701
Co-authored-by: Ryohei KOMATSUYAMA <54347899+kmtym1998@users.noreply.github.com>
GitOrigin-RevId: 62eba310c0019437b2fa888970b9482a8a2ad468
2022-08-31 21:26:51 +00:00
Rob Dominguez
8e98a2f975 docs: create new structure for ee docs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5414
Co-authored-by: Nithin <36623418+nithindv@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: a9a7e24d3e63e4f5df979cf1eb56308067be49b4
2022-08-31 16:17:49 +00:00
Shahidh K Muhammed
964dec9fb3 docs: add dedicated vpc docs for gcp
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5560
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 811e49ca8c4a0b6d44fad4f965b0f3688384c6da
2022-08-30 12:23:25 +00:00
Karthikeyan Chinnakonda
fde727704d document the customization of the _stream root field
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5660
GitOrigin-RevId: 3694428c80843a582678b57352601adc3fff5429
2022-08-29 15:17:20 +00:00
Rob Dominguez
51ca899ddd Docs: Add snippet missed from OSS pg default privileges merge
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5611
GitOrigin-RevId: 0393f12f2e602c041a8552267ed74fc92cf12aa4
2022-08-24 11:01:24 +00:00
hasura-bot
15a43026c6 Add default privileges to pg user permissions example (close #3671)
GITHUB_PR_NUMBER: 8575
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8575

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4687
Co-authored-by: Benoit Ranque <25712958+BenoitRanque@users.noreply.github.com>
GitOrigin-RevId: 11903ee1499d89f07772be575f90666c3f88d3e6
2022-08-24 10:18:05 +00:00
Rob Dominguez
0828f97dde Docs: Add admonition for including heading while testing
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5591
GitOrigin-RevId: a260f5e1dc4d0d83e651a3a29f134d640715bd5d
2022-08-23 15:47:48 +00:00
Rob Dominguez
acc90587b4 docs: add runbook to wiki
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5464
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 9f2aba315fd08d3d63c4c9913525817e52096a95
2022-08-23 15:30:23 +00:00
Poojan Savani
fc97c8e456 Hasura Cloud Document change for scheduled triggers data retention period
>

## Description ✍️
Hasura cloud each for each project retention period for hdb_cron_events and hdb_cron_event_invocation_logs tables is 1 month. which means that for any project in hasura cloud the user can only look at the past 1 month of data of Cron triggers.

### Catalog upgrade ✍

Does this PR change Hasura Catalog version?
-  No
### Metadata ✍

Does this PR add a new Metadata feature?
-  No
### GraphQL ✍
-  No new GraphQL schema is generated

### Breaking changes ✍

-  No Breaking changes
---

#### Commit title
Hasura Cloud Document change for scheduled triggers data retention period

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5566
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: 751e544a0add51c5be6ad5c8e6b86624604b93eb
2022-08-23 07:41:29 +00:00
Rob Dominguez
61d545c9b7 Docs: update EE references in Cloud+EE pages
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5134
GitOrigin-RevId: 33af200d7b4fb626be15f77ed73510ceff5b723e
2022-08-22 09:08:33 +00:00
pranshi06
e5df380d70 server: add rename_query_collection metadata API
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5533
GitOrigin-RevId: d9c322034c4be01f87ecf05415dac1f90e906c8c
2022-08-19 13:37:16 +00:00
Chris Martin
1f0ea5e06a Added note to database page regarding provisioned vs. serverless
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5515
GitOrigin-RevId: 60b251bfed8b9d4b43378464a71471b9187e9acc
2022-08-18 15:48:23 +00:00
paritosh-08
9d23a10f33 server: fix behaviour of custom table name for graphql-default naming convention
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5290
GitOrigin-RevId: bc398989d82a0e78bfcf87d5aa81bcd6a709c67f
2022-08-17 12:47:49 +00:00
Rikin Kachhia
9786e9292f docs: fix formatting errors
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5514
GitOrigin-RevId: 8c9c37bdd4c82daeb971c54788ae9cd1e3d5cdc4
2022-08-17 11:32:57 +00:00
hasura-bot
fa9c1aac9e docs: fix syntax error in docs for PG enums
GITHUB_PR_NUMBER: 8796
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8796

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5501
Co-authored-by: Alexi Bre <48396900+ruffCode@users.noreply.github.com>
GitOrigin-RevId: 2d0cb1160538f7238d0da7a5eb21a3571bac4bff
2022-08-17 10:28:24 +00:00
Sean Park-Ross
a94ae64e35 Docs: Add admin secret info to authentication, queries, mutations, subscriptions section
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5396
GitOrigin-RevId: 05f6a8156ba5dc5e23edd4b9df71c08e929f38ca
2022-08-11 13:11:48 +00:00
Karthikeyan Chinnakonda
f3dd172821 server: accept extensions_schema while adding a source
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5401
Co-authored-by: Naveen Naidu <30195193+Naveenaidu@users.noreply.github.com>
GitOrigin-RevId: 75b68c439fc68662a8e312f84132126d761dda48
2022-08-10 09:42:09 +00:00
Evie Ciobanu
8cb490d7d4 docs: add docs for multiple updates
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5400
GitOrigin-RevId: b5ec4850025e1a2ed2a76e9d56f1956ed3a27dbb
2022-08-10 08:54:42 +00:00
Rob Dominguez
f132524fed docs: update heroku admonition to link to gh issue
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5398
GitOrigin-RevId: 03f29984071631538a0b005c4503b315c8ab33ed
2022-08-09 12:32:17 +00:00
Karthikeyan Chinnakonda
66caae4a44 server: accept schema name as a target for the graphql-engine to install DB extensions
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5362
GitOrigin-RevId: 5e246c3af3bdf2a7b5b2a66e2e09f40abcdfd9c9
2022-08-09 11:43:48 +00:00
Rob Dominguez
796a977950 docs: add admonition for heroku integration
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5387
GitOrigin-RevId: 8d33059dc828930bd91c57e8a6be36f3ae0b6bae
2022-08-08 18:42:34 +00:00
Rob Dominguez
7823921214 docs: update first columns to fixed width
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5381
GitOrigin-RevId: 2e4330d6dc5d75bd36d6ac2d9131d993fb38e14c
2022-08-08 16:10:07 +00:00
hasura-bot
11b46d2f49 Add warning about ordering of keys in order_by object
GITHUB_PR_NUMBER: 8753
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8753

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5366
Co-authored-by: Benoit Ranque <25712958+BenoitRanque@users.noreply.github.com>
GitOrigin-RevId: 2025193c9fd962cb3c6f14a1b87651c079ec0b08
2022-08-05 18:21:08 +00:00
Chris Martin
0a8662ca1c Update lux-2.0.8.tgz references to lux-2.0.13.tgz
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5357
GitOrigin-RevId: ff1ac904170d8db8b12f3e277bd58f80f8b19280
2022-08-05 17:53:49 +00:00
Rob Dominguez
b6cf8205b1 Docs: Updates env vars page (closes #4418 & closes #4669)
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5161
GitOrigin-RevId: 3bce830e283aa3c84044851be41e3c0db2f43e8b
2022-08-05 16:54:13 +00:00
Rob Dominguez
0016216cd3 Docs: update GCP PG connection string
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5298
GitOrigin-RevId: bbbc0220ab967c5baaa47daf17c6cfb6b544d320
2022-08-04 20:32:33 +00:00
paritosh-08
f6067cb977 server/console: add metadata API set_apollo_federation_config
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5294
Co-authored-by: Varun Choudhary <68095256+Varun-Choudhary@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 274d76ff92970ecffa43943125313ba84b07c495
2022-08-04 09:38:02 +00:00
Rob Dominguez
2494cfa949 Docs: updates Lux installation docs to include PV storage amounts (closes #5160)
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5276
GitOrigin-RevId: 8d1a1ebf7dba3f67842a1f96e648c1f29d7e4e25
2022-08-03 20:24:56 +00:00
Rob Dominguez
8602d1cf1c Docs: reorganize image folders after restructure
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5297
GitOrigin-RevId: a9403c873777a48ac0fc27f07a82c4cbb793f982
2022-08-03 16:26:40 +00:00
Sean Park-Ross
42a317b2d2 Docs: Fix schema/postgres/naming-convention.mdx overwrites from restructure
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5233
GitOrigin-RevId: 3804293ff1e637f1d827df5d0b0b96895939fad8
2022-07-28 12:23:32 +00:00
Rob Dominguez
7d797e1b34 Docs: incorporates updates for pg requirements and opentelemetry (closes #4811 and closes #4812)
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5207
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Vishnu Bharathi <4211715+scriptnull@users.noreply.github.com>
GitOrigin-RevId: 5b435e34a695ec6c8573467e2e9513e64d313666
2022-07-28 12:20:03 +00:00
Rob Dominguez
654c3c178a Docs: updates styles for tbody globally
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5164
GitOrigin-RevId: 706857ce1bec316e58b97e8f540fe431c40b5982
2022-07-28 12:17:15 +00:00
paritosh-08
12064dd24c docs: apollo federation
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5146
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: dbd8f3bc08ff847b4925867623417b6a70361d5a
2022-07-27 04:05:08 +00:00
Anon Ray
b59d53b0ea multitenant/pro: add time limits to policies
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4464
GitOrigin-RevId: 31ad8e12c5727fea2dd69415b98ab2a937cd0d44
2022-07-26 12:42:49 +00:00
dsandip
c7a9589bdc Update redis connection string sample
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5171
GitOrigin-RevId: 8d86b12bb1d45c0b7a166b8c9230c5db5c7db847
2022-07-25 07:37:49 +00:00
Abby Sassel
f35039ff9b server/docs: BigQuery Schema > Data Validation
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5126
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 0b58afa424813a4ee612dc10e1f58c02b779a191
2022-07-22 15:33:07 +00:00
Rob Dominguez
5811994469 Docs: Adds reverted docs changes for #5018
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5135
GitOrigin-RevId: a532fab7c2a7c931d51f1044e9f5f46a69201a5f
2022-07-22 06:44:19 +00:00
Sean Park-Ross
4c1c69b339 docs: restructure fixes
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5118
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: dffacc23b0496fc398a1687ab0bc67bd0fd5156c
2022-07-21 12:41:19 +00:00
Marion Schleifer
ee846db056 docs: epic restructure
[Preview link](https://marion-docs-restructure.hasura-docs-mono.pages.dev/docs/latest/index/)

This PR is a complete restructure of documentation including the following:
- Merge [core](https://hasura.io/docs/latest/graphql/core/index/) and [cloud](https://hasura.io/docs/latest/graphql/cloud/index/) docs
- Integrate [enterprise](https://docs.ee.hasura.io/) docs
- Flip [database section](https://hasura.io/docs/latest/graphql/core/databases/index/)
- Much more

@robertjdominguez @seanparkross please add improvements and link to the sections that you've updated, so that it's easy to find for reviewers.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4882
Co-authored-by: surendran82 <26085612+surendran82@users.noreply.github.com>
Co-authored-by: Abby Sassel <3883855+sassela@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 897191003a5e20dcc525b15e571725a34dc7d76e
2022-07-20 16:36:00 +00:00
Karthikeyan Chinnakonda
584aa666bd server: add support to customize streaming subscriptions root field
Earlier, if the `select` root field had a custom root field set, the same custom root field was then used for the streaming subscription root field as well. This leads to duplicate root fields being generated in the `subscription_root`.

This PR fixes that. It provides a way to customize the streaming subscription root field and not use the `select` root field's custom root field name for the streaming subscription root field.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4967
Co-authored-by: Anon Ray <616387+ecthiender@users.noreply.github.com>
GitOrigin-RevId: 54e74ce97561b0e5cfdfc60d1ca340aaebecf7d4
2022-07-06 12:14:25 +00:00
Varun Choudhary
4a129042fa console: implement new design for naming convention and edit functionality for Graphql Field Customization
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4859
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Matt Hardman <28978422+mattshardman@users.noreply.github.com>
GitOrigin-RevId: ebe25491b90caf9d1de091072727503d666469fe
2022-07-01 13:00:06 +00:00
surendran82
d89e4801fa docs: hasura con post conference banner updates
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4922
GitOrigin-RevId: 8c974999923ab556033566215fa13b68ff7df36d
2022-06-30 18:26:57 +00:00
Sean Park-Ross
c20f069cb7 Docs: Preview apps: fix screenshot, table of contents, markdown table
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4902
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 67633ecf37dbd077dd668d34fff2fa977a680445
2022-06-29 16:15:01 +00:00
Sandeep Raj Kumar
a3539baf7d docs: Rename Metrics to Observability
Rename the Sub-heading `Metrics` in the cloud docs to `Observability`.
Note: The links still contain `metrics`. I will follow up with another PR to change the links and add redirects for the old links so that the doc references in Cloud console do not break.
Slack Thread [here](https://hasurahq.slack.com/archives/C01MD2B8A0K/p1656415791128499)

>

## Description ✍️
->

### Related Issues ✍
->

### Solution and Design ✍
>

### Steps to test and verify ✍
>

### Limitations, known bugs & workarounds ✍
>

## Affected components ✍️

- Docs

### Breaking changes ✍

- No Breaking changes

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4888
GitOrigin-RevId: 603f443d7f7a909d4fd87f0354ed3147063a5523
2022-06-29 12:25:38 +00:00
Priya Sharma
5348163d6d docs : update vercel official hasura integration link
>

## Description ✍️
->

PR updates the link for official Hasura integration.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4884
GitOrigin-RevId: 106d9848b267bb4b36287e56a06537acdaa5d8f9
2022-06-28 16:28:16 +00:00
Rob Dominguez
c529e659bf docs: update db avail matrix
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4878
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 8ed1a02691d50fc79bd801f19e9af130b292cb4b
2022-06-28 16:17:12 +00:00
Priya Sharma
9f179a7746 docs : remove under preview section from github docs
>

## Description ✍️
->

This PR removes the `under preview` section from github docs.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4881
GitOrigin-RevId: a938e411a11372263a4366a66c4ec8202f0264aa
2022-06-28 15:06:42 +00:00
Sean Park-Ross
405b953c88 Docs: move preview apps page from "deployment" section to cloud root
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4876
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: d614cd0d48162d4206ac5accdbc72b755cb63390
2022-06-28 11:11:22 +00:00
Lyndon Maydwell
ab8369bdcf PG SSL-cert maybe fields
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4767
GitOrigin-RevId: 042fa622c6f208cf72fee40acee28e87ebcf1f67
2022-06-28 01:26:03 +00:00
hasura-bot
f4891d71c3 docs: add white space on auth webhook page
GITHUB_PR_NUMBER: 8628
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8628

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4853
Co-authored-by: J. G. Sebring <4135198+Sebring@users.noreply.github.com>
GitOrigin-RevId: d3f8194cc52a28dac15296a0e0742ed8eb05a837
2022-06-27 08:49:59 +00:00
Sean Park-Ross
3f5a55ef18 Docs: fix broken link in cloud index
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4847
GitOrigin-RevId: 4e704e628e4fde039d59866d145601bdc7fe9cb9
2022-06-24 11:47:29 +00:00
surendran82
b9db8afbee docs: hasura con banner updated and thin banner stripe bg color updated
>

## Description ✍️
Hasura con banner updated and announcement banner background color change

->

- Docs

---

### Kodiak commit message
Information used by [Kodiak bot](https://kodiakhq.com/) while merging this PR.

#### Commit title
Same as the title of this pull request

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4846
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 78d922cd34204bf271359875d27eec1f0f789e8b
2022-06-24 10:19:36 +00:00
Shraddha Agrawal
6c5cd40763 docs: rehaul preview app docs & improve cloud api reference
>

## Description ✍️
->
This PR rehauls Hasura Cloud Preview App docs.

The changed components:

- removes the preview-app single page doc.
- adds a top level directory called `deployment`:
- within this, 3 pages are added:
  - index for preview apps
  - preview apps github action docs
  - preview apps API docs
- updates the API reference doc for preview api mutation/query with detailed information

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4779
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
Co-authored-by: Marion Schleifer <5722022+marionschleifer@users.noreply.github.com>
GitOrigin-RevId: f8dd0c713c3a76e7a95c598a78ea5cc8c2e7df8d
2022-06-24 08:53:30 +00:00
Rob Dominguez
639555b349 docs: updated auth diagrams to read database vs pg
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4775
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 6bd01bce992fca4eacc779fdb883ae7ed47ff08e
2022-06-23 15:44:05 +00:00
nevermore
a2ef9ebfff docs: Public GraphiQL docs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4643
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
Co-authored-by: Marion Schleifer <5722022+marionschleifer@users.noreply.github.com>
GitOrigin-RevId: c390b30e14cc0212bdbe3a9280f4276310b7c568
2022-06-23 15:41:39 +00:00
Priya Sharma
59af87b28b docs : add debug steps for version check error in github integration
>

## Description ✍️

This PR updates the github integration docs to add steps for debugging the error `version check` under common errors.
->

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4816
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: c306e8eeb174402477ce43cc50774a5583077911
2022-06-23 13:40:00 +00:00
Karthikeyan Chinnakonda
db5d0b1d93 User facing docs for disabling root fields
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4616
Co-authored-by: Auke Booij <164426+abooij@users.noreply.github.com>
Co-authored-by: Marion Schleifer <5722022+marionschleifer@users.noreply.github.com>
GitOrigin-RevId: e4fc23245c6d4e53b8e355a858b2ab335348beba
2022-06-23 13:16:54 +00:00
Sean Park-Ross
7a552d34da docs: wiki style section
**WIP**

## Description ✍️
Adding a style section to the documentation wiki.

This is a distillation and continuation of the notes started by @marionschleifer and @rikinsk at https://docs.google.com/document/d/1lD7IVEjtv5Sf9BaVqzefLywG-kNpuM40I84ThIUSmwg/edit

* _Everything is very much in a WIP stage._

* Everything is on one page for now, but if it warrants it, each sections could be broken out into separate parts under a main `style` section.

@robertjdominguez Please let me know your thoughts too.

**Anyone** please feel free to edit and push to this branch.

- Sean

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4642
Co-authored-by: parklifeio <33491775+parklifeio@users.noreply.github.com>
Co-authored-by: Rob Dominguez <24390149+robertjdominguez@users.noreply.github.com>
GitOrigin-RevId: 48a26500114efcef22278d4e673ce0289bd7d7db
2022-06-23 09:45:35 +00:00
Rikin Kachhia
020e0bd841 docs: add hasuracon22 banner
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4826
GitOrigin-RevId: aea33ff304ab4fb228cb2cdfa978ea30fca2d918
2022-06-23 09:36:34 +00:00
hasura-bot
f23a8e4c42 docs: fix typo in event trigger docs
GITHUB_PR_NUMBER: 8616
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8616

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4829
Co-authored-by: Jonathan Schneider <9538230+jonaschn@users.noreply.github.com>
GitOrigin-RevId: a7e4e5844357e5a9a24a2b2833c3171137b59891
2022-06-23 09:33:07 +00:00
paritosh-08
98d899d4ba server: add update_source API and extend add_source to edit source customization
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4705
Co-authored-by: Rakesh Emmadi <12475069+rakeshkky@users.noreply.github.com>
GitOrigin-RevId: d185f19c88c4030075522d001fdbc0bafa66db8f
2022-06-22 07:07:28 +00:00
Rob Dominguez
631ca80750 docs: db-guides' screenshots for cloud updated
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4612
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 43159907d6a15dd2c28845e88c830570071ca101
2022-06-20 14:10:11 +00:00
Rob Dominguez
dc2823e268 docs: all cloud screenshots updated
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4683
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: e7e5e0934ab844712260c72ce3129cb7caef77e2
2022-06-20 13:57:47 +00:00
SidharthBihary
5be7dc7ad7 docs: Minor update to include traces in the context of logs and metrics in Metrics/Integration section, rectify typo
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4737
GitOrigin-RevId: 900564cc2f41c0cb09e788bc6f75b7e8a6f3f45e
2022-06-15 14:18:51 +00:00
Sandeep Raj Kumar
36e6283931 docs: cloud OpenTelemetry integration
>

## Description ✍️
Add docs for the OpenTelemetry Exporter Integration feature that is going to be added to EE and Cloud.

### Related Issues ✍
Issue [3698](https://github.com/hasura/lux/issues/3698)
RFC - https://github.com/hasura/lux/pull/3831
implementation PR - [4000](https://github.com/hasura/lux/pull/4000)
->

## Affected components ✍️

-  Docs

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4608
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: c1a7914cc40cfe05213418fa6555f4198e92eca3
2022-06-15 13:32:08 +00:00
Abby Sassel
732ce2848f server/docs: remove references to distinct_on in MSSQL docs
we don't yet support this. from discussion at https://hasurahq.slack.com/archives/C01RZPEPF0W/p1655211910120289.

[docs preview](https://1316cb95.hasura-docs-mono.pages.dev/docs/latest/graphql/core/databases/ms-sql-server/queries/index/#auto-generated-query-field-schema)

github issue to implement the feature itself, to be prioritised separately: https://github.com/hasura/graphql-engine-mono/issues/4719

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4721
GitOrigin-RevId: b4bdb662c8a2045aef351064e5fdb2e16f4b7244
2022-06-15 12:44:17 +00:00
Sean Park-Ross
8e69fde547 docs: restructure cron trigger create section
## Description ✍️
Tiny fix for Cron Trigger casing @rikinsk identified earlier.

edit: restructured the create cronn section

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4666
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 356426d76d64a907d0ca6c2b8c762ac3f2f3fc4b
2022-06-14 14:21:37 +00:00
Naveen Naidu
134544135d docs: update mssql read replica docs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4664
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 90d23b6094e7fdaa24fddd0690830ba5019cb2c3
2022-06-14 13:28:52 +00:00
paritosh-08
4a611febaf docs: naming convention docs rectification
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4681
GitOrigin-RevId: 49c6a2f3e8c5afc10ab0c62b1bca4079a3867978
2022-06-09 13:51:31 +00:00
Miguel Fernández
ac42db645a docs: replace images for project suspension to reflect new copy
Tracked in https://github.com/hasura/lux/issues/3904
Together with https://github.com/hasura/lux/pull/4568

This is to replace deactivated -> hibernated in the copy of the project card, to make project hibernation more palatable to users

cc @vaishnavigvs

>

## Description ✍️
->

### Related Issues ✍

Tracked in https://github.com/hasura/lux/issues/3904
Together with https://github.com/hasura/lux/pull/4568

### Kodiak commit message
Change copy of docs page for project hibernation

#### Commit title

Replace images to reflect new copy on project hibernation documentation page

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4660
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 5cdcd7b7ac847cb537faf9f62863d621e51c4348
2022-06-09 12:27:53 +00:00
Aravind K P
df0d55e508 docs: update hasura config reference for multiple admin secrets
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4678
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: de94e26749c034cd63ceebfcb0c2cde983a3a0d5
2022-06-09 11:08:51 +00:00
hasura-bot
e19573b43a Format Connection string so it is more visible
GITHUB_PR_NUMBER: 8555
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8555

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4633
Co-authored-by: Jonathan Marbutt <1386587+jmarbutt@users.noreply.github.com>
GitOrigin-RevId: ddfaf76096b4f17db0d71f113c9ea4e3a7cdebdc
2022-06-09 10:54:38 +00:00
Rikin Kachhia
d328d673ca docs: restructure naming conventions page
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4670
Co-authored-by: paritosh-08 <85472423+paritosh-08@users.noreply.github.com>
GitOrigin-RevId: 848295d1dae95c618aac37da8df520412b08a677
2022-06-09 09:47:38 +00:00
Rob Dominguez
0a6671a4bf docs: fix graphiql editor copying issue
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4632
GitOrigin-RevId: 4ed4e9318effb139c270a7bb81e12bd4a94e5700
2022-06-08 13:22:28 +00:00
SidharthBihary
2cbc24cf3f docs: update datadog docs for new regions support and UI change
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4603
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 3d82fbb2c581ff4683b8585d235476bcc0cac49f
2022-06-08 09:39:36 +00:00
paritosh-08
8f09253514 docs: naming convention
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4589
Co-authored-by: Tirumarai Selvan <8663570+tirumaraiselvan@users.noreply.github.com>
Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com>
GitOrigin-RevId: 6bf4d13d683ed17b112b79a1a57b92984fe39b0a
2022-06-08 08:44:18 +00:00
Rakesh Emmadi
854a76c5b1 docs: add BigQuery computed fields feature page
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4591
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: b06af8ce4812790bcdfd3348af544ba7d99e5b17
2022-06-07 14:38:14 +00:00
Karthikeyan Chinnakonda
d905911eab server: disable query/subscription root fields
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4524
Co-authored-by: Auke Booij <164426+abooij@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 1cae7a1596825925da9e82c2675507482f41c3fb
2022-06-07 05:33:12 +00:00
Tirumarai Selvan
2c8452396f docs: add a note about different hasura instances connecting to the same database
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4637
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: b564f1037a5e31c7085c2b6aa5a364aa4a4e5c78
2022-06-06 10:16:24 +00:00
Naveen Naidu
11867b50a4 server: extend backend_only setting for update and delete permissions
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4530
Co-authored-by: Karthikeyan Chinnakonda <15602904+codingkarthik@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: c4c1a3bd9736ec275e77c6f55c76049c550443f9
2022-05-31 14:42:14 +00:00
pranshi06
cd0f674821 server: Adds support to return array of scalars in Actions
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3661
GitOrigin-RevId: bc37e7aa0cb861069536aa97aa4dff1fdc05e08b
2022-05-31 05:23:47 +00:00
Abhijeet Khangarot
b09bb602bd console: add support for application/x-www-form-urlencoded in rest connectors
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4354
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 44dc48f3f226c57aac4393133245bf70d5f68acd
2022-05-30 13:51:15 +00:00
Marion Schleifer
b2ff3162c1 docs: update authz docs
Based on this [feedback](https://hasurahq.slack.com/archives/C015EA71MU0/p1651061643434309).

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4403
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 68bff5f9fa3dea8a4b7bff43be17982fa52e3d36
2022-05-30 08:55:27 +00:00
paritosh-08
42da1dbc2e server/docs: follow up on the naming convention
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4563
GitOrigin-RevId: 0ae1f226a63dae34e6cb0d001b4915c05b0974cf
2022-05-27 05:56:52 +00:00
paritosh-08
fd30fb343b server: naming conventions for auto generated fields
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3982
Co-authored-by: Brandon Simmons <210815+jberryman@users.noreply.github.com>
GitOrigin-RevId: f90b2e8f394e7bd69780f003d2d980475f104f42
2022-05-26 11:55:29 +00:00
Stefano Magni
e42c3985d4 docs: Fix the references to the API tab
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4496
GitOrigin-RevId: 7d5a9d5043391a4957fb7ee290d9f263a8b5a3d8
2022-05-25 13:13:56 +00:00
hasura-bot
ec24857bc3 docs: correct Hasura ASCII logo
GITHUB_PR_NUMBER: 8500
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8500

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4529
Co-authored-by: Johan Eliasson <331818+elitan@users.noreply.github.com>
GitOrigin-RevId: 95e2e13bf37fcd2433d55af3f7637504df383e00
2022-05-25 13:10:51 +00:00
Marion Schleifer
7f13d4380f docs: fix pg requirements page
Based on these two conversations:
- https://hasurahq.slack.com/archives/C015EA71MU0/p1652417463650649
- https://hasurahq.slack.com/archives/C015EA71MU0/p1652417516799779

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4500
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
Co-authored-by: Tirumarai Selvan <8663570+tirumaraiselvan@users.noreply.github.com>
GitOrigin-RevId: 63c3d17ad2be409e52a50df61a6e17a333e50cf0
2022-05-25 13:07:35 +00:00
hasura-bot
8a05ff207b docs: fix allowed_skew is described as a string, but needs to be a number
GITHUB_PR_NUMBER: 8516
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8516

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4539
Co-authored-by: Romian Tairovski <13468715+ItsMeRomian@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 2b8d245d8432a0fb22d61bc560879700ef7e0e17
2022-05-25 08:21:19 +00:00
hasura-bot
ffe97bd0bb docs: better indentation in example
GITHUB_PR_NUMBER: 8509
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8509

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4526
Co-authored-by: Johan Eliasson <331818+elitan@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 2be1aea0e55b3267a63bda71dd22debe4b98a969
2022-05-23 09:52:24 +00:00
Miguel Fernández
7ea4c79f02 docs: add another FAQ to project hibernation
>

## Description ✍️
->

Tracked in https://github.com/hasura/lux/pull/3904
Part of https://github.com/hasura/lux/issues/4136

## Changelog ✍️

- [x] `CHANGELOG.md` is updated with user-facing content relevant to this PR.
  If no changelog is required, then add the `no-changelog-required` label.

## Affected components ✍️

- [x]  Docs

### Metadata ✍

Does this PR add a new Metadata feature?
-  No

### GraphQL ✍
-  No new GraphQL schema is generated

### Breaking changes ✍

-  No Breaking changes

### Kodiak commit message

#### Commit title

[docs] Add another FAQ to the project hibernation page

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4447
GitOrigin-RevId: 9e2681c12bdac69f992419a181503ef44672d55b
2022-05-07 16:09:55 +00:00
hasura-bot
4c1280e3af docs: add SSL setup to cloud GCP Postgres guide
GITHUB_PR_NUMBER: 8458
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8458

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4425
Co-authored-by: adas98012 <101733366+adas98012@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Marion Schleifer <5722022+marionschleifer@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: c958ae880118e717f76f982c3c15ea7b90ff56e7
2022-05-07 16:07:30 +00:00
hasura-bot
b56b3f9581 docs: add Clerk auth integration guide
GITHUB_PR_NUMBER: 8456
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8456

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4422
Co-authored-by: Ian McPhail <97047001+devchampian@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Marion Schleifer <5722022+marionschleifer@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 60436cb04abd92ea22816b3960c0f34675fabfa6
2022-05-07 15:42:29 +00:00
Jeremy Jacobson
b369462913 docs: Added DataDog trace documentation for Cloud
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4421
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 5791a4c952a96885ac3c3ec3373436f180778115
2022-05-06 10:52:08 +00:00
hasura-bot
4cd66bef09 docs: clarify computed fields execution docs
GITHUB_PR_NUMBER: 8461
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8461

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4437
Co-authored-by: Michael Floering <2420688+hangtwenty@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: fbeb56eba04415776cdba44089a4e0319587eb36
2022-05-04 11:02:31 +00:00
Miguel Fernández
935a6fc975 [docs] Document the hibernation of free projects that are unused
>

## Description ✍️
->

Tracked in https://github.com/hasura/lux/pull/3904
Part of https://github.com/hasura/lux/issues/4136

## Changelog ✍️

- [x] `CHANGELOG.md` is updated with user-facing content relevant to this PR.
  If no changelog is required, then add the `no-changelog-required` label.

## Affected components ✍️

- [x]  Docs

### Metadata ✍

Does this PR add a new Metadata feature?
-  No

### GraphQL ✍
-  No new GraphQL schema is generated

### Breaking changes ✍

-  No Breaking changes

### Kodiak commit message

#### Commit title
[docs] Document the suspension of free projects that are unused

#### Commit body

Unused free projects are suspended given two previous notices to the owner. A project becomes inactive when it's unused for 3 months.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4389
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: e4daed2bba6fe5d965c64c00f2aa4104afe593e7
2022-05-04 09:01:54 +00:00
Marion Schleifer
0d66c316ce docs: add feature docs for federation
This PR adds the following docs:
- Remote relationships for Postgres
  - Remote schema -> Database
  - Remote schema -> Remote schema
- Remote relationships for MS SQL Server
  - Database -> Database
  - Database -> Remote schema
  - Remote schema -> Database
  - Remote schema -> Remote schema

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4281
Co-authored-by: Vamshi Surabhi <6562944+0x777@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: dc6aa4d4cbcfd9c9ddc1df65c7b0f402cc2eafee
2022-04-28 09:14:27 +00:00
hasura-bot
e61f163d4f docs: add Azure trace integration
GITHUB_PR_NUMBER: 8381
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8381

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4167
Co-authored-by: SidharthBihary <75970352+SidharthBihary@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: fc675a65ef83a7f439e32f324fa7626c0719cd16
2022-04-27 12:56:08 +00:00