Commit Graph

53 Commits

Author SHA1 Message Date
Fernando K
b7800ffa2e add links to the api reference (#794) 2018-10-31 19:19:29 +05:30
Tirumarai Selvan
4bd3c57018 add retry-after header info to event-trigger docs (#956) 2018-10-31 18:21:48 +05:30
Rikin Kachhia
37aeccc6b0 update requests package version in docs for security (#955) 2018-10-31 14:49:45 +05:30
Mohammed Rishad
58ccddc76e pep8 fixes for python files (#875) 2018-10-30 14:51:58 +05:30
Rikin Kachhia
ac8f2f65a8 reduce max algolia document size for docs (#914) 2018-10-29 18:03:48 +05:30
Shahidh K Muhammed
ba7673af33
rename query to type on api reference 2018-10-29 14:42:44 +05:30
Vinayak
e830931294 fix grammatical errors in docs (#861) 2018-10-27 15:21:14 +05:30
Tirumarai Selvan
d7024e8d42 explain parameters and headers (#867) 2018-10-27 10:29:54 +05:30
Rakesh Emmadi
f6ed169219 allow ordering using columns from object relationships (closes #463) (#672)
* allow ordering using columns from object relationships, close #463

* validate table fields in nested insert

* add tests

* add docs

* change 'table_order_by' type from enums to ordered map

* remove unwanted code from 'Schema.hs' file

* 'AnnGObject' is not list of field name and value tuple

* update docs for new order_by type

* use 'InsOrdHashMap' for 'AnnGObj'

* handle empty fields in order_by

* remove '_' prefixes for asc/desc

* fix the changed order_by syntax across the repo
2018-10-26 17:27:33 +05:30
Rikin Kachhia
dada14b1ad update docs (#860)
* add $ before commands in server flag reference docs

* add deploy to AWS RDS blog link to guides in docs

* fix pagination expressionin reference docs

* update many-to-many relationship docs

* add _not operator + filtering over relationships docs
2018-10-26 08:29:36 +05:30
Rakesh Emmadi
10d8529d28 allow unauthorized role in accesskey and JWT modes (closes #595) (#856) 2018-10-25 23:46:25 +05:30
Fraser Smith
b47b629c93 Update digital-ocean-one-click.rst (#851)
Fixed typos in line 291
2018-10-25 18:32:01 +05:30
toozdey
2f6d5e813b Fixed Sphinx link (404) and fixed markup to the RST guide page. (#831)
Wanted to changed links to https as well but the site has cert error.
2018-10-25 18:24:25 +05:30
Vamshi Surabhi
199531cbd9
http and websocket logs now correctly have user information, closes #849 (#850) 2018-10-25 15:07:57 +05:30
Tirumarai Selvan
810b440089 trigger webhooks on column level changes instead of row (close #547, close #680) (#550) 2018-10-25 12:52:51 +05:30
Vamshi Surabhi
ab9692da4d
set all session data in a single paramater, 'hasura.user' (closes #825) 2018-10-24 16:09:47 +05:30
Shahidh K Muhammed
71f2af9fb8
add digital ocean one-click docs (#813) 2018-10-20 21:11:08 +05:30
Mayank Raj
d561ba2bd2 grammar corrections (#782) 2018-10-20 08:52:13 +05:30
Max Vogel
c13f679766 grammar and spelling fix in comments (#768) 2018-10-19 22:37:04 +05:30
cozyplanes
5bd21b03e4 add a comma in queries.rst (#756) 2018-10-19 22:32:39 +05:30
Alexander Lichter
b7aba2e869 docs(schema): add introspect keyword (#749) 2018-10-19 22:30:31 +05:30
Spencer Ng
a0a97d709d improve documentation (fix #745) (#746) 2018-10-19 22:29:18 +05:30
dsandip
82e8d45bf9 adds content for many-to-many relationships (#807) 2018-10-18 19:57:00 +05:30
Rakesh Emmadi
405f5edb34 document 'track_table' and 'untrack_table' query (close #715) (#777) 2018-10-17 10:57:11 +05:30
dharmendra-lingaiah
3f34849db1 update graphql engine internals doc (#740) 2018-10-17 10:52:36 +05:30
Shivansh Nalwaya
b087734b2c fix typos and grammar in docs/manual/schema (#754) 2018-10-16 12:02:29 +05:30
Burak Özdemir
feb8968879 fix e.g. and i.e. typos (#732) 2018-10-15 14:17:21 +05:30
Daniel P
b91704e3ca fix typos is multiple files (#728) 2018-10-15 12:29:51 +05:30
dharmendra-lingaiah
17bfc36f86 update jwt docs (#742) 2018-10-15 10:33:47 +05:30
Chandler Weiner
fade5b39f8 fix spelling and grammar in docs (#709) 2018-10-12 09:30:25 +05:30
Rikin Kachhia
92c8ec55b2 docs: fix kubernetes logging page (#706) 2018-10-11 17:10:53 +05:30
Matthew Holman
bf71b17274 add guides/resources section to docs (#694) 2018-10-11 16:59:53 +05:30
Rikin Kachhia
9c2ca7cd54 docs update (#699) 2018-10-10 19:51:43 +05:30
michizhou
c47ea78e0b fix typos, wording, punctuation, other errors in docs (#668) 2018-10-10 12:02:03 +05:30
Utsav Bhardwaj
5916b97b86 added digitalocean deployment instructions (fix #582) (#663) 2018-10-09 19:38:54 +05:30
Shahidh K Muhammed
1c15a9482a
add docs for schema / metadata api (close #409) (#626) 2018-10-08 19:42:03 +05:30
Rakesh Emmadi
00d5a5c1a3 insert mutations can now handle nested-data/relationsips (close #343) (#429) 2018-10-05 20:43:51 +05:30
Rakesh Emmadi
91376316f2 breaking: encode bigint and bigserial postgres types as strings in response (fix #633) (#640)
This is breaking change where bigint and bigserial Postgres types will be encoded as GraphQL String types, as opposed to Int as present in earlier releases.

Input types were already encoded as String.

This is achieved by selecting `bigint` and `bigserial` columns as `text`s in the SQL query: `select "big_id"::text ..` instead of `select "big_id" .. `.

Reason for that change is outlined in #633 where JavaScript cannot decode 64 bit Integers.
2018-10-05 10:46:21 +05:30
Utkarsh Gupta
300684f2dc add docs for jwt_secret & enable_console env (#646) 2018-10-04 20:05:13 +05:30
Hugo
1e8e440bbc docs: fix spelling (#637) 2018-10-04 20:00:01 +05:30
Nikita Titov
15e3d6e549 multiple punctuation fixes in docs (#614) 2018-10-04 09:39:47 +05:30
Rikin Kachhia
e265086fa4 docs: update logo + add docker for mac configuration note (#559) 2018-09-27 21:34:21 +05:30
Anon Ray
75090d51b9 jwt config now takes a jwk url (close #465) (#527)
JWT config now takes an optional jwk_url parameter (which points to published JWK Set). This is useful for providers who rotate their JWK Set.

Optional jwk_url parameter is taken. The published JWK set under that URL should be in standard JWK format (tools.ietf.org/html/rfc7517#section-4.8).

If the response contains an Expires header, the JWK set is automatically refreshed.
2018-09-27 16:52:49 +05:30
surendran82
17cbdbd970 add github and social media buttons to docs page (#540) 2018-09-26 19:42:55 +05:30
Rikin Kachhia
d0303995e3 explicity mention env variables for heroku with existing database (#531) 2018-09-25 22:29:47 +05:30
Shahidh K Muhammed
ae43a08afb
update docs (#498)
update docs (close #474, close #480)
2018-09-20 15:21:27 +05:30
Maxim Makarov
0fc4ebf09a fix typos in metadata command (#493) 2018-09-20 07:00:37 +05:30
Rikin Kachhia
d2decec32b update docs (#441)
* docs: update custom resolvers docs

* docs: update mono repo links
2018-09-13 18:45:34 +05:30
Rikin Kachhia
dae3410e4d add docs on setting default value for columns (#437) 2018-09-13 17:10:17 +05:30
Shahidh K Muhammed
5929ec5be3
add installation manifests (#432) 2018-09-13 15:03:13 +05:30