Aswin M Prabhu
b47172974f
ignore case when comparing header names to detect access key ( fix #286 ) ( #287 )
2018-08-15 14:17:18 +05:30
Rishichandra Wawhal
6ba9c759e6
import queries into graphiql from url in query params ( #283 )
...
If there are a bunch of queries at a file path, say: `https://raw.githubusercontent.com/wawhal/test-repo/master/queries.graphql `, you can template GraphiQL with those queries by passing the URL in query params.
For example: if the console is running at `https://wofoo.herokuapp.com/console `, to template the queries, the URL would be: `https://wofoo.herokuapp.com/console?query_file=https://raw.githubusercontent.com/wawhal/test-repo/master/queries.graphql `
2018-08-14 15:35:57 +05:30
Shahidh K Muhammed
0ea2ab45f8
add default cmd to dockerfile ( close #228 ) ( #281 )
2018-08-13 15:58:22 +05:30
Praveen Durairaj
f3d22cbbb3
export console as npm module ( #279 )
2018-08-13 14:38:17 +05:30
Rakesh Emmadi
0797407dbf
respect the nullability of columns in generated schema ( fix #256 ) ( #276 )
2018-08-10 18:14:44 +05:30
Rakesh Emmadi
adf973dee5
better error code when insertion check constraint fails ( fix #257 ) ( #267 )
2018-08-10 17:35:07 +05:30
Vamshi Surabhi
c901767cd1
update packages ( #251 )
...
* move to stackage 12.4
* upgrade pg-client
* docker build improvements
2018-08-08 13:10:13 +05:30
Rakesh Emmadi
cffa808d19
returning returns [] when mutations affect no rows ( fix #265 ) ( #269 )
...
* fix returning returns null, fix #265
* add a test case for delete mutation with returning
2018-08-08 12:31:49 +05:30
Rikin Kachhia
816b480df3
handle legacy operators in permissions builder ( fix #268 ) ( #270 )
2018-08-08 11:41:00 +05:30
Rakesh Emmadi
8ecb80d2da
accept null values for input values, closes #252 ( #266 )
2018-08-07 16:13:42 +05:30
Shahidh K Muhammed
887b7ca835
add realtime indicators to readme ( #262 )
2018-08-06 19:37:03 +05:30
Vamshi Surabhi
dcde969d66
ignore certain headers from the request when calling the webhook ( close #260 ) ( #261 )
2018-08-06 19:36:48 +05:30
Rakesh Emmadi
9c55490e98
add limit in select permission which overrides limit in query ( close #178 ) ( #237 )
2018-08-06 17:45:08 +05:30
Shahidh K Muhammed
0ed3ff6418
remove manifests directory from init ( close #254 ) ( #258 )
2018-08-06 17:03:17 +05:30
Praveen Durairaj
60f15c654b
create table, modify table ui alignment fix ( #249 )
2018-08-03 16:16:42 +05:30
Rakesh Emmadi
c94640a377
don't allow creating relationships from/to a table that isn't tracked ( fix #185 ) ( #229 )
...
* don't allow fkey based relations from/to a table that isn't tracked, fix #185
Check if remote table exist in metadata when creating foreign-key
based object relationship.
* add tests for adding object relation using fkey if remote table is untracked
2018-08-03 15:04:37 +05:30
Rakesh Emmadi
8ef2692eb7
improve logs on webhook errors ( closes #238 , #242 ) ( #243 )
...
* logging for webhook IO exceptions, fix log request for errors, fix #238
* log status code and response in case of any error for webhook
2018-08-03 14:13:35 +05:30
Praveen Durairaj
40602fcc6e
add url prefix for console add table redirect ( fix #245 ) ( #247 )
2018-08-03 12:41:29 +05:30
Praveen Durairaj
6340a5074a
show graphql-engine version on console ( close #184 ) ( #230 )
2018-07-31 12:06:20 +05:30
Praveen Durairaj
2e58483af3
modify comments for tables/columns and views ( #220 )
...
* console: modify comments for tables/columns
* console: fix bugs, css
* console: update package.json
* console: fix comment
2018-07-30 19:09:18 +05:30
Rakesh Emmadi
a0590598e5
filter schema identifiers to conform to graphql naming scheme ( close #134 ) ( #211 )
...
* filter schema identifiers to conform to graphql naming scheme,closes #134
Filter out tables, columns, relationships etc which does not conform to
graphql naming scheme.
This ensures GraphiQL initialisation works properly for existing
databases.
* rename `isGraphQLConform` to `isValidName`
* rename all graphQL validators
2018-07-27 15:20:12 +05:30
Anon Ray
62b7b800c5
check for updates every 24 hrs in background ( fix #204 ) ( #209 )
2018-07-27 15:04:50 +05:30
Praveen Durairaj
70d7c7deb1
add version update checker ( #215 )
2018-07-26 17:10:32 +05:30
Anon Ray
c747971f2d
server tests now run across supported postgres versions >= 9.5 ( fix #154 ) ( #199 )
2018-07-26 11:17:21 +05:30
Aswin M Prabhu
94b309d69a
remove legacy react lifecycle methods ( fix #99 ) ( #208 )
...
* remove legacy react lifecycle methods (#99 )
2018-07-25 20:40:54 +05:30
Aswin M Prabhu
7feb82ed98
add test for subscriptions, improve coverage ( fix #191 )
2018-07-25 12:14:27 +05:30
Aswin M Prabhu
a127b5ae59
show access key as password on the console ( fix #98 ) ( #203 )
2018-07-24 17:29:53 +05:30
Rishichandra Wawhal
9b61964b71
retry websocket connection on failure ( fix #198 ) ( #200 )
2018-07-24 15:22:47 +05:30
Rakesh Emmadi
ad31f02b51
add ca certificates to packager ( fix #195 ) ( #197 )
2018-07-24 13:17:09 +05:30
Aravind Shankar
aef56ba196
configure git while updating manifests repo ( #190 )
2018-07-24 09:35:32 +05:30
Cosmin Radoi
453f7d8b7f
refactor: convert function expression to arrow function ( #181 )
...
Just a few cases of converting a traditional function to ES6 arrow functions. Pure refactoring.
2018-07-23 11:59:56 +05:30
Shahidh K Muhammed
9081a27259
open secure websockets if console and endpoint are both on https (fix 182) ( #183 )
2018-07-21 05:18:57 +05:30
Shahidh
0b15987db9
ciignore: always pass checks for tags
2018-07-21 01:38:16 +05:30
Shahidh
80db149cbd
fix typo in godoc link
2018-07-21 00:37:40 +05:30
Shahidh
7980012e1d
update md files
2018-07-21 00:35:51 +05:30
Shahidh K Muhammed
dec39a10ba
create statically linked binaries for cli ( close #175 ) ( #179 )
...
[skip ci]
2018-07-20 16:30:25 +05:30
Rakesh Emmadi
27e2d647bb
add _inc and jsonb operators to update_mutation ( close #159 ) ( #169 )
2018-07-20 16:21:20 +05:30
Aravind Shankar
75dbe35a21
create down migrations for actions from console ( close #164 ) ( #173 )
2018-07-20 16:01:33 +05:30
Anon Ray
07ac9fe345
add more tests ( #170 )
2018-07-20 13:49:06 +05:30
Vamshi Surabhi
e3f960da96
initial support for livequeries ( #176 )
...
fix #59
2018-07-20 12:52:46 +05:30
ASWIN M PRABHU
8d83cbedd3
fix error when altering schema in raw_sql ( fix #171 ) ( #172 )
2018-07-19 16:51:35 +05:30
Praveen Durairaj
81da2f7d1a
add cascade option for raw sql ( close #161 ) ( #168 )
2018-07-19 16:38:32 +05:30
Rishichandra Wawhal
7ea67f207c
add uuid column type in console ( close #142 ) ( #160 )
2018-07-18 18:16:04 +05:30
Shahidh K Muhammed
8aa481c639
deploy script enhancements ( close #112 ) ( #155 )
...
[skip ci]
2018-07-18 17:57:09 +05:30
Arpit Kushwaha
126fd754ed
update discord link on readme ( #163 )
...
[skip ci]
2018-07-18 17:42:41 +05:30
Shahidh K Muhammed
7a42e7a7fa
ciignore: always build master branch ( #162 )
...
* always pass build worthiness check for master
[skip ci]
2018-07-18 17:13:37 +05:30
Shahidh K Muhammed
9c848e2b94
add option to serve console assets from a local directory ( #145 )
...
* add option to serve console assets from a local directory
* remove /console prefix
* update gin context only if static dir is present
2018-07-18 16:22:07 +05:30
msrahman07
78c1bd9c94
metadiscourse marker not needed ( #157 )
...
However, if you have encountered a bug --> "If you have encountered a bug"
2018-07-18 11:52:42 +05:30
Shahidh K Muhammed
3cb62622b2
update ciignore to take circleci compare url ( #158 )
2018-07-18 11:16:52 +05:30
Shahidh K Muhammed
92935bed40
add ciignore ( #153 )
...
Builds with changes only to files mentioned in `.ciignore` will fail on circleci at the `check_build_worthiness` step.
2018-07-18 11:00:52 +05:30