Commit Graph

250 Commits

Author SHA1 Message Date
Luís Pinto
c86a8242f2 community: add netlify event-trigger echo boilerplate (#2985)
Co-authored-by: Praveen Durairaju <praveend.web@gmail.com>
2019-12-30 15:24:27 +05:30
Praveen Durairaju
caab88a405 community(gatsby-postgres-graphql): remove createLink, update deps (close #965) (#3600) 2019-12-27 19:25:58 +05:30
Vitalii Tverdokhlib
6d1fad6d69 community(sample-apps): update readme for quasar-framework-vue (#3563)
typo: quasar-framework-vue-graphql

Co-authored-by: Shahidh K Muhammed <muhammedshahid.k@gmail.com>
2019-12-25 11:45:10 +05:30
Kevin Menard
5634dbfa16 add notes about auth0-spa-js to auth0 docs (#3367) 2019-12-17 12:15:52 +05:30
Kim Santos
040b069d62 sample apps(update): update gatsby sample app (#2969) 2019-12-02 15:57:03 +05:30
Sameer Tulshyan
e09826b23a community(sample-apps): mod firebase-jwt html (#3044) 2019-10-26 09:51:55 +05:30
Rishichandra Wawhal
9d2ce81c70 move community tools to separate repos (#3155) 2019-10-26 09:32:32 +05:30
Grzegorz Wcisło
7b59f5dc2e Add ruby examples for triggers on lambda (address #1740) (#3007) 2019-10-21 17:04:22 +05:30
Rishichandra Wawhal
81de56dc70 community: tic-tac-toe: fix names bug and add docker-compose (#3058) 2019-10-11 16:27:55 +05:30
craigglennie
ddf5997eac ra-data-hasura: update readme explain some imports (close #2905) (#2906)
I was a little confused about where some of the imports in the example code came from, until I realised that they're created as part of the react-admin tutorial. I added a comment explaining that.
2019-10-10 21:39:50 +05:30
Rishichandra Wawhal
d3f80265f5 update graphiql explorer in hasura console and graphiql online (closes #2313) (#2994)
* update graphiql explorer

* update onegraph explorer in graphiql online
2019-10-08 16:17:18 +05:30
Rodolfo Silva
e0a7a8dd6f ra-data-hasrua: set 'asc' as default behavior to sort GET_LIST (#2916)
Right now if you provide a empty sort param you will get a error, because sort.order is undefined and don't have a function toLowerCase.
Like a common database we can set the default order direction as ASC.
2019-10-04 16:19:37 +05:30
Alain Armand
7148fdc598 community: change [Int] to [Int!] to get app to compile. (#2993) 2019-10-04 16:19:01 +05:30
Praveen Durairaj
68332fac54 community: move learn to a different repo (#2930)
* remove learn, update readme
2019-09-26 10:09:20 +05:30
Praveen Durairaj
be57394ead remove deprecated folders from community (close #1399) (#2897) 2019-09-24 18:20:52 +05:30
Joshua Yoerger
883ec85bfc correct argument type for insert_todos mutation (#2902)
C.f. the schema documentation for mutation_root > insert_todos in the [Try it out in GraphiQL](https://learn.hasura.io/graphql/graphiql) environment.
2019-09-18 15:31:46 +05:30
Praveen Durairaj
0a64ef99b5 ra-data-hasura: filter for count query, add httpClient (close #2100, #2741, #2771) (#2727)
* filter for count in GET_LIST and GET_MANY_REFERENCE

* update deps, add httpClient argument, release new version
2019-09-18 08:06:17 +05:30
Praveen Durairaj
3b5886ed92 community: svelte-apollo: fix connectionParams (close #2769) (#2893) 2019-09-17 13:14:10 +05:30
Praveen Durairaj
384b960f5d update package versions for next-postgres-graphql (close #2714) (#2894) 2019-09-17 13:13:04 +05:30
Praveen Durairaj
c3c0e3213f community: learn: add typescript-react-apollo (#2838) 2019-09-16 12:26:27 +05:30
Rónán
a7c53ceaf3 add link to rust remote-schema boilerplate (#2885)
* Add link to rust boilerplate

* Update README.md
2019-09-16 12:26:05 +05:30
Tirumarai Selvan
17b8b6e2de update remote schema boilerplate readme (#2884) 2019-09-16 11:02:08 +05:30
Raja Jain
7d27719f29 community: learn: flutter tutorial mods (#2859) 2019-09-11 15:03:39 +05:30
Victor Ferreira
27d85ca6bb fix a typo in limit description of schema (close #2810) (#2811) 2019-09-05 12:47:01 +05:30
Alain Armand
ce11953038 learn: fix type bug in reasonml tutorial (#2564)
* Error on line 72

That line throws an error:
```ocaml
53 │         let onlineUsers = Array.map(u => <UserItem user=u />, data##on
       line_users);
  54 │
  55 │         let onlineUsersTitle =

  This has type:
    Js.Array.t({. "id": option(string), "user": option({. "name": string})})
      (defined as
      array({. "id": option(string), "user": option({. "name": string})}))
  But somewhere wanted:
    array({.. "name": string})
  The first object type has no method name

>>>> Finish compiling(exit: 1)
```

Works like this:

```ocaml
let online_users = data##online_users->Belt.Array.keepMap(x => x##user);
let onlineUsers = Array.map(u => <UserItem user=u />, online_users);
```
Or however you want to do it.

* Per pull conversation

added piped version, combining functions.
2019-08-27 16:22:09 +05:30
imsyf
eac5681100 learn: fix typos in apollo-android (#2772) 2019-08-27 15:56:38 +05:30
Praveen Durairaj
774cb986b0 learn: update content, add algolia search (close #2308) (#2731) 2019-08-27 15:28:40 +05:30
Arun Kumar Mohan
b4ff745162 fix markdown rendering (learn.hasura.io) (#2746) 2019-08-23 14:35:27 +05:30
Tomasz Skowroński
669bb40e72 add more boilerplates for serverless triggers (#748)
#431
2019-08-23 11:02:22 +05:30
Praveen Durairaj
1418b43c52 community: explorer, voyager graphiql-online (close #2128,#2129) (#2737) 2019-08-20 11:30:42 +05:30
Praveen Durairaj
230d8efb40 community: update paths for sample-apps (close #1915) (#2723) 2019-08-14 07:05:44 +00:00
Praveen Durairaj
8af9e33b1a community: update todo-auth0 sample app (close #1290) (#2725) 2019-08-14 07:04:56 +00:00
Apoorv Vardhan
9e18f0d297 community: learn: add angular-graphql tutorial (#2624) 2019-08-10 10:17:51 +00:00
Raja Jain
242ecf5a47 community: learn: add flutter-graphql tutorial (#2554) 2019-08-06 04:03:11 +00:00
surendran82
1115d0c9a0 community: learn: home page design updates (#2588) 2019-08-01 12:46:43 +00:00
Tobias Törnros
727eee8493 fix typo on event triggers boilerplates for Netlify Functions (#2493) 2019-08-01 05:11:44 +00:00
Rodrigo Quelhas
93737916a9 community: learn: ReasonML tutorial bug fixes (#2642) 2019-07-31 16:18:32 +00:00
Vitalii Tverdokhlib
a8a18e04bb community: update remote schema boilerplate (#1938) 2019-07-31 06:24:50 +00:00
Sebastian Ekström
c4af1d73cd learn: fix typo in mutation documentation (#2185) 2019-07-30 11:43:18 +00:00
Mike Wheaton
b3807d8f98 learn: fix a minor typo (pluralized name) (#2351) 2019-07-30 11:41:36 +00:00
Apoorv Vardhan
5c0bd295a9 community: learn: react tutorial file path fixes (#2632) 2019-07-30 10:44:00 +00:00
Praveen Durairaj
ce30fa8488 community: add gatsby-contentful-auth0 sample app (#2603) 2019-07-26 09:12:00 +00:00
Praveen Durairaj
b301fef058 community: learn: update favicon (#2582) 2019-07-23 06:58:23 +00:00
Rishichandra Wawhal
0e94517fed community: learn: reasonml tutorial fixes (#2559) 2019-07-23 06:56:02 +00:00
Praveen Durairaj
dde9908650 community: learn: show reason-react on homepage (#2558) 2019-07-17 06:03:12 +00:00
Rishichandra Wawhal
a3b70e8d25 community: learn: add reason-react with apollo (#2523) 2019-07-17 01:06:33 +00:00
Anon Ray
a3e7a20a44 add notices in jwt docs regarding audience check (#2557)
- also update firebase sample-app README with correct JWT conf
2019-07-16 11:13:00 +00:00
Shahidh K Muhammed
71e2b45390
community: learn: use cloudflare dns challenge (#2551) 2019-07-16 03:23:27 +00:00
Karthik Venkateswaran
a76e34770a community: learn: add elm graphql tutorial (#2427) 2019-07-13 07:43:03 +00:00
Rishichandra Wawhal
f3808bc9ba community: fix tic-tac-toe wrong turn bug (#2524) 2019-07-12 12:37:10 +00:00
dependabot[bot]
5342c9b869 Bump lodash.merge in /community/sample-apps/react-static-graphql (#2505)
Bumps [lodash.merge](https://github.com/lodash/lodash) from 4.6.1 to 4.6.2.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/commits)

Signed-off-by: dependabot[bot] <support@github.com>
2019-07-11 04:25:48 +00:00
dependabot[bot]
184683c87f Bump handlebars in /community/tools/graphql2chartjs/example/app (#2473)
Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.0.12 to 4.1.2.
- [Release notes](https://github.com/wycats/handlebars.js/releases)
- [Changelog](https://github.com/wycats/handlebars.js/blob/master/release-notes.md)
- [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.12...v4.1.2)

Signed-off-by: dependabot[bot] <support@github.com>
2019-07-05 04:02:18 +00:00
dependabot[bot]
9132f5575d Bump handlebars from 4.0.11 to 4.1.2 in /community/sample-apps/… (#2474)
Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.0.11 to 4.1.2.
- [Release notes](https://github.com/wycats/handlebars.js/releases)
- [Changelog](https://github.com/wycats/handlebars.js/blob/master/release-notes.md)
- [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.11...v4.1.2)

Signed-off-by: dependabot[bot] <support@github.com>
2019-07-05 04:01:25 +00:00
Rishichandra Wawhal
f86fcde723 graphql2chartjs: bump version to 0.3.0 (#2445) 2019-06-28 16:31:41 +05:30
Praveen Durairaj
7c7f34da8e learn: fix twitter share image on homepage (#2437) 2019-06-27 15:10:45 +05:30
Rishichandra Wawhal
b52ed4ccf0 learn: update react native tutorial with videos (#2390) 2019-06-26 13:12:08 +05:30
iamvo
751bd44fb7 graphql2chartjs: fix mapping of non-array types (#2307) 2019-06-25 13:32:13 +05:30
Aidan Grimshaw
ea19bef9b6 created docker compose for build and launch of tutorial (#2406) 2019-06-21 08:36:27 +05:30
Praveen Durairaj
86c5348959 ra-data-hasura: bump version (#2380) 2019-06-14 19:24:45 +05:30
Pablo Rocha
f4b03a5875 ra-data-hasura: fix key update when response not an array (#2272) 2019-06-14 18:16:56 +05:30
Pablo Rocha
af1c4b9dc7 ra-data-hasura: add filters to GET_* types (#2284) 2019-06-14 18:16:26 +05:30
Praveen Durairaj
c4dd209eed community: update sample apps for codesandbox compatibility (#2377) 2019-06-14 14:37:00 +05:30
Praveen Durairaj
2b68417416 learn: update gatsby-gitbook-boilerplate to gatsby-gitbook-starter (#2340) 2019-06-14 14:19:55 +05:30
surendran82
c2c992a14d learn: update testimonials section on website (#2367) 2019-06-11 17:15:17 +05:30
Praveen Durairaj
a30814f01c community: add gridsome sample app (#2363) 2019-06-10 18:57:38 +05:30
Andrew Jones
912b56dbe6 learn: fix typos (#2319) 2019-06-10 12:26:35 +05:30
dependabot[bot]
ba96697abc Bump js-yaml from 3.12.0 to 3.13.1 in /community/tools/json2graphql (#2338)
Bumps [js-yaml](https://github.com/nodeca/js-yaml) from 3.12.0 to 3.13.1.
- [Release notes](https://github.com/nodeca/js-yaml/releases)
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.12.0...3.13.1)

Signed-off-by: dependabot[bot] <support@github.com>
2019-06-06 09:37:30 +05:30
Praveen Durairaj
e22af00750 learn: update content (#2241) 2019-06-04 15:20:42 +05:30
dependabot[bot]
eaa4a37029 Bump axios in /community/boilerplates/auth-webhooks/nodejs-express (#2325)
Bumps [axios](https://github.com/axios/axios) from 0.18.0 to 0.18.1.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v0.18.1/CHANGELOG.md)
- [Commits](https://github.com/axios/axios/compare/v0.18.0...v0.18.1)
2019-06-04 15:05:06 +05:30
Pablo Rocha
ec40706121 ra-data-hasura: fix column sorting (#2276) 2019-05-30 13:15:08 +05:30
Manishalexin
981960cb3b learn: add android tutorial (close #2270) (#2271) 2019-05-29 10:49:42 +05:30
Pablo Rocha
622bba6686 ra-data-hasura: add missing "s" to id variable (#2274) 2019-05-27 09:50:20 +05:30
Praveen Durairaj
cfd61a86a7 sample-apps: add svelte 3 graphql app (#2256) 2019-05-23 17:00:16 +05:30
Dakota Hipp
32f1d47baa learn: update backend tutorial to disable oidc conformance in auth0 (#2222) 2019-05-22 14:08:47 +05:30
Rikin Kachhia
998acd51dd docs: fix auth links, fix version tags (#2231) 2019-05-20 15:12:36 +05:30
Rishichandra Wawhal
7f27fd9825 community: add readme to root of tic tac toe game; fix bugs (#2229) 2019-05-20 14:18:11 +05:30
surendran82
7f57f2b73f learn: optimise home page code (#2199) 2019-05-17 20:24:00 +05:30
Ajeet D'Souza
375a5db602 learn: fix typos (#2184) 2019-05-17 17:14:12 +05:30
Kittitat Upaphong
fd1577aab6 learn: update backend remote-schema doc (#2206)
need to add a protocol to the domain, otherwise will get an error 'Only absolute URLs are supported'.
2019-05-17 11:33:08 +05:30
Praveen Durairaj
a6d3fd2968 ra-data-hasura: add custom primary key support (#2194) 2019-05-16 21:16:35 +05:30
Rishichandra Wawhal
aae8a1c72d community: add multiplayer tic tac toe to sample apps (#2150) 2019-05-16 16:36:22 +05:30
Praveen Durairaj
8e0db21364 learn: multiple fixes (#2158) 2019-05-14 16:27:59 +05:30
Rishichandra Wawhal
83234ef48a learn: add custom graphiql for react native (#2169) 2019-05-13 15:27:59 +05:30
Rishichandra Wawhal
5f903e40c9 learn: add react native tutorial (#2136) 2019-05-13 13:02:51 +05:30
Manishalexin
5b2be6f200 learn: add ios tutorial (close #2161) (#2162) 2019-05-13 12:10:00 +05:30
Praveen Durairaj
cede01570b learn: update homepage design (#2166) 2019-05-13 10:34:51 +05:30
Praveen Durairaj
80fdceaac7 community: react-apollo-todo: fix update todo queries (#2157) 2019-05-10 19:40:12 +05:30
Praveen Durairaj
eff684cc6a learn: add custom auth webhook for tutorials (#2154) 2019-05-10 15:37:56 +05:30
Praveen Durairaj
a63009c1cf learn: add vue graphql tutorials (#2091) 2019-05-10 15:33:30 +05:30
Praveen Durairaj
4253817c43 learn: add hasura backend course (#2134) 2019-05-10 15:06:24 +05:30
Anon Ray
a21f6cd648 introduce v1/graphql (fix #1368) (#2064)
Changes compared to `/v1alpha1/graphql`

* Changed all graphql responses in **/v1/graphql** endpoint to be 200. All graphql clients expect responses to be HTTP 200. Non-200 responses are considered transport layer errors. 

* Errors in http and websocket layer are now consistent and have similar structure.
2019-05-10 11:35:10 +05:30
swyx
57378dd21e add instructions on netlify function as event trigger (#2110) 2019-05-07 12:01:56 +05:30
savil
b2d98fba87 community: fix broken links (#1963)
the directory refactoring left these image URLs dangling
2019-05-07 11:06:19 +05:30
Praveen Durairaj
fc4638fc9d ra-data-hasura: add support for multiple schemas (close #1729) (#2068) 2019-05-06 14:53:35 +05:30
Praveen Durairaj
e828ec9948 graphql-tutorials: remove gatsby tutorial site (#2119) 2019-05-06 14:52:10 +05:30
Praveen Durairaj
8538b5dadb graphql-tutorials: add videos to react tutorial (#2115) 2019-05-03 21:08:27 +05:30
Praveen Durairaj
09805e4124 tutorials: learn react sitemaps, content fixes (closes #2090) (#2079)
* added sitemap, content fix

* update content, fix content selection

* remove console.log

* add github links

* support moz-user-select-none

* fix mobile navigation collapse
2019-04-30 14:40:58 +05:30
Daniel Madalitso Phiri
0a876ff2ba graphql2chartjs: update readme with typo fix (#2067) 2019-04-26 10:03:24 +05:30
Praveen Durairaj
20dd0ce2fd learn react content fixes (#2063) 2019-04-25 15:33:56 +05:30
Praveen Durairaj
f4ddfd88a0 add react graphql tutorial (#2061) 2019-04-24 16:57:27 +05:30