surendran82
17cbdbd970
add github and social media buttons to docs page ( #540 )
2018-09-26 19:42:55 +05:30
Arpit Kushwaha
0a43d53ab9
update pull request template ( #532 )
...
add build system to the checklists in pr_template, moved test as a checkbox
2018-09-26 18:01:37 +05:30
Aravind Shankar
ebc3589118
add passport-js auth webhook boilerplate ( #528 )
2018-09-26 17:57:59 +05:30
Rikin Kachhia
d0303995e3
explicity mention env variables for heroku with existing database ( #531 )
2018-09-25 22:29:47 +05:30
Karthik Venkateswaran
42177360e3
console fixes ( close #406 ) ( close #491 ) ( #522 )
...
Fetches event information on click on the redeliver event icon and refreshes every 5 seconds to display the recent invocation data
2018-09-25 22:11:56 +05:30
Tirumarai Selvan
2cd2b23b2d
add custom headers for webhooks, refactor retry logic ( #419 )
2018-09-24 17:20:11 +05:30
Karthik Venkateswaran
65f29610f0
take access key from redux state ( #514 )
2018-09-22 14:32:41 +05:30
Karthik Venkateswaran
33accea81c
add gatsby-postgres-hasura boilerplate ( #499 )
2018-09-20 21:03:46 +05:30
Rakesh Emmadi
8f6b19d6f1
quote constraint name for non-admin inserts ( fix #494 ) ( #497 )
...
### Description
What component does this PR affect?
- [x] Server
### Related Issue
#494
### Solution and Design
Use `quote_ident()` SQL function over `constraint_name` in insert trigger function definition.
### Type
- [x] Bug fix (non-breaking change which fixes an issue)
2018-09-20 20:54:20 +05:30
Shahidh K Muhammed
ae43a08afb
update docs ( #498 )
...
update docs (close #474 , close #480 )
2018-09-20 15:21:27 +05:30
Anon Ray
04696aec45
fix pgcrypto extension creation failures on heroku ( fix #495 ) ( #496 )
...
### Description
Fixes #495
What component does this PR affect?
- [x] Server
### Solution and Design
Create the extension explicitly mentioning the public schema.
### Type
- [x] Bug fix (non-breaking change which fixes an issue)
2018-09-20 12:55:39 +05:30
Karthik Venkateswaran
72dfa7dcde
remove development data api url ( #492 )
2018-09-20 09:55:40 +05:30
Arpit Kushwaha
a5ebd5a1c0
add pull request template and new demo gif ( close #473 ) ( #488 )
2018-09-20 09:54:05 +05:30
Aravind Shankar
729b56dd20
live queries tests for subscription ( #487 )
2018-09-20 07:16:03 +05:30
Maxim Makarov
0fc4ebf09a
fix typos in metadata command ( #493 )
2018-09-20 07:00:37 +05:30
Tirumarai Selvan
c42af444f7
implement query to update an event trigger ( #367 )
2018-09-19 17:42:57 +05:30
Shahidh K Muhammed
9d0ec2f8ba
update installation manifests to v1.0.0-alpha20
2018-09-19 15:38:25 +05:30
Karthik Venkateswaran
6f1be7c3b2
show access key prompt when server indicates it's set ( close #426 ) ( #481 )
2018-09-19 15:35:47 +05:30
Rishichandra Wawhal
3d6732b678
change table and foreign-key naming conventions in json2graphql ( #485 )
...
Foreign keys will now be detected if a column name is `<table_name>_id`.
Earlier, foreign keys would be detected when column name was `<table_name - s>_id`. This was a problem because it placed restrictions on table names. Such restrictions were limiting us from importing complicated JSON databases.
Here are the examples of JSON sampel data for a user, post and comment schema as per new and old conventions:
Old convention:
```
{
posts: [
{ id: 1, title: "Lorem Ipsum", views: 254, user_id: 123 },
{ id: 2, title: "Sic Dolor amet", views: 65, user_id: 456 },
],
users: [
{ id: 123, name: "John Doe" },
{ id: 456, name: "Jane Doe" }
],
comments: [
{ id: 987, post_id: 1, body: "Consectetur adipiscing elit" },
{ id: 995, post_id: 1, body: "Nam molestie pellentesque dui" }
]
}
```
New convention:
```
{
post: [
{ id: 1, title: "Lorem Ipsum", views: 254, user_id: 123 },
{ id: 2, title: "Sic Dolor amet", views: 65, user_id: 456 },
],
user: [
{ id: 123, name: "John Doe" },
{ id: 456, name: "Jane Doe" }
],
comment: [
{ id: 987, post_id: 1, body: "Consectetur adipiscing elit" },
{ id: 995, post_id: 1, body: "Nam molestie pellentesque dui" }
]
};
```
@FrediBach I am not sure how this would affect [Blowson](https://github.com/FrediBach/json-data-extender ). Can you provide some input?
2018-09-19 14:18:52 +05:30
Rakesh Emmadi
ec516ce55b
allow _is_null operator for filter/check permissions ( close #456 ) ( #477 )
2018-09-18 17:15:35 +05:30
nizar-m
cde559fe58
dont set non-null constraint for manual object relationships ( close #462 )
2018-09-18 17:01:16 +05:30
Vamshi Surabhi
85df9ac1e8
payload is now optional in connection_init message ( close #470 ) ( #471 )
2018-09-18 13:13:30 +05:30
Vamshi Surabhi
534f23d1a6
python based tests ( #387 )
2018-09-18 11:51:57 +05:30
Rishichandra Wawhal
68a2e0372f
add json2graphql to community tools ( #454 )
2018-09-17 18:23:23 +05:30
Rakesh Emmadi
e6c5aa5b43
indicate access key is set in the console context ( close #426 ) ( #447 )
2018-09-14 18:57:46 +05:30
Tirumarai Selvan
f94de38e4c
dont reload schema cache for event deliveries ( #453 )
2018-09-14 18:13:42 +05:30
Patrick Aljord
dec29da545
add postgis specific docker-compose file ( #452 )
2018-09-14 17:19:23 +05:30
Anon Ray
4b4c675ab7
better handling for pgcrypto extension ( fix #338 ) ( #423 )
2018-09-14 17:11:51 +05:30
Praveen Durairaj
17490e14ee
fix add manual relationships state ( close #442 ) ( #450 )
2018-09-14 14:11:03 +05:30
Praveen Durairaj
eeb15f663f
sort untracked table list alphabetically ( close #421 ) ( #449 )
2018-09-14 12:55:11 +05:30
Praveen Durairaj
7b6add51e6
fix track_table pattern, error handling in run_sql ( close #392 ) ( #448 )
2018-09-14 12:44:41 +05:30
Anon Ray
f7dbf2a6f1
add jwt + auth0 todo example app ( #445 )
2018-09-14 09:47:08 +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
Anon Ray
af6121f83d
jwt claims check should be case-insensitive ( fix #435 ) ( #438 )
2018-09-13 18:34:50 +05:30
Tirumarai Selvan
c3a38517cd
dont retry http requests in the client ( close #434 ) ( #436 )
2018-09-13 17:22:11 +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
Anon Ray
acd62c3bf8
add community boilerplates and examples ( #430 )
2018-09-13 12:00:07 +05:30
Shahidh K Muhammed
be20a11d37
update checks on ci systems ( close #319 ) ( #383 )
2018-09-12 16:33:36 +05:30
Rikin Kachhia
fffaed7bcb
docs update ( #427 )
2018-09-12 14:58:55 +05:30
Anon Ray
a5930edd8a
uri-decode database uri strings ( fix #372 ) ( #424 )
2018-09-12 11:49:08 +05:30
Shahidh K Muhammed
d3d9845497
merge docs into main repo ( close #397 ) ( #398 )
2018-09-11 16:41:24 +05:30
Aravind Shankar
9c7c650d2b
migration apply should not fail if there are no migrations ( close #389 ) ( #390 )
2018-09-10 18:51:30 +05:30
Praveen Durairaj
7a8fc66f73
export event triggers component ( #386 )
2018-09-10 17:48:20 +05:30
Shahidh K Muhammed
e12184d530
update event-triggers.md
2018-09-09 12:04:40 +05:30
Rakesh Emmadi
86b769c8e5
returning on json queries now returns only affected row ( fix #380 ) ( #381 )
2018-09-08 23:02:58 +05:30
Aravind Shankar
79a6849241
add parallel tests and update dependencies ( #374 )
2018-09-08 23:01:14 +05:30
Shahidh K Muhammed
617f379128
update event-triggers doc
2018-09-07 18:41:01 +05:30
Vamshi Surabhi
dd8e09d6cb
add jsonb boolean operators ( close #369 ) ( #376 )
2018-09-07 17:45:28 +05:30
Tirumarai Selvan
e905535beb
implement api to deliver a particular event ( close #371 ) ( #373 )
2018-09-07 17:21:01 +05:30