Skip to content

Commit 83b0604

Browse files
authored
wip: update readme - less duplication
1 parent 8d9feaf commit 83b0604

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

README.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
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

55
## Showcase
66

7-
### Backend pg_graphql / supabase
7+
### Backend
88

99
- CRUD (Query + Mutation Operations)
1010
- Cursor Based Pagination
11-
- Authorization / RLS
11+
- Authorization / Postgres Row Level Security
12+
- [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.
13+
- [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.
14+
- [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
15+
- [Postgres Enumerated Types](https://www.postgresql.org/docs/14/datatype-enum.html) - Enums help defined the direction of a vote: UP or DOWN.
16+
1217

1318
### Frontend
1419

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

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-
2927
### Functionality
3028

3129
- Registration

0 commit comments

Comments
 (0)