Skip to content

Commit 95a05da

Browse files
authored
Merge pull request #13 from supabase-community/kiwicopple-patch-1
2 parents 15ed721 + c12c0fe commit 95a05da

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

README.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
1-
# Supabase PG GraphQL Example App
1+
# Supabase GraphQL Example
22

33
A basic HackerNews-like clone where posts can be submitted with url links and then up and down voted.
44

5+
<img width="1000" alt="graphql-hn" src="https://user-images.githubusercontent.com/10214025/160611420-29705df8-3e0a-471e-baef-04a3e2ac5618.png">
6+
- Example: [supabase-graphql-example.vercel.app](https://supabase-graphql-example.vercel.app/)
7+
- Features: [supabase-graphql-example.vercel.app/about](https://supabase-graphql-example.vercel.app/about)
8+
59
## Showcase
610

7-
### Backend pg_graphql / supabase
11+
### Backend
812

913
- CRUD (Query + Mutation Operations)
1014
- Cursor Based Pagination
11-
- Authorization / RLS
15+
- Authorization / Postgres Row Level Security
16+
- [Supabase](https://supabase.com) - Create a backend in less than 2 minutes. Start your project with a Postgres Database, Authentication, instant APIs, Realtime subscriptions and Storage.
17+
- [pg_graphql](https://supabase.com/blog/2021/12/03/pg-graphql) - A native [PostgreSQL extension](https://supabase.github.io/pg_graphql/) adding [GraphQL support](https://graphql.org). The extension keeps schema generation, query parsing, and resolvers all neatly contained on your database server requiring no external services.
18+
- [Postgres Triggers](https://supabase.com/blog/2021/07/30/supabase-functions-updates) and [Postgres Functions](https://supabase.com/docs/guides/database/functions) - When votes are in, use triggers to invoke a Postgres function that calculates a post score to rank the feed
19+
- [Postgres Enumerated Types](https://www.postgresql.org/docs/14/datatype-enum.html) - Enums help defined the direction of a vote: UP or DOWN.
20+
1221

1322
### Frontend
1423

@@ -19,13 +28,6 @@ A basic HackerNews-like clone where posts can be submitted with url links and th
1928
- [urql](https://formidable.com/open-source/urql/) - A highly customizable and versatile GraphQL client
2029
- [Gravatar](https://en.gravatar.com) - Default avatar profile images from Gravatar
2130

22-
### Backend
23-
24-
- [Supabase](https://supabase.com) - Create a backend in less than 2 minutes. Start your project with a Postgres Database, Authentication, instant APIs, Realtime subscriptions and Storage.
25-
- [pg_graphql](https://supabase.com/blog/2021/12/03/pg-graphql) - A native [PostgreSQL extension](https://supabase.github.io/pg_graphql/) adding [GraphQL support](https://graphql.org). The extension keeps schema generation, query parsing, and resolvers all neatly contained on your database server requiring no external services.
26-
- [Postgres Triggers](https://supabase.com/blog/2021/07/30/supabase-functions-updates) and [Postgres Functions](https://supabase.com/docs/guides/database/functions) - When votes are in, use triggers to invoke a Postgres function that calculates a post score to rank the feed
27-
- [Postgres Enumerated Types](https://www.postgresql.org/docs/14/datatype-enum.html) - Enums help defined the direction of a vote: UP or DOWN.
28-
2931
### Functionality
3032

3133
- Registration

0 commit comments

Comments
 (0)