You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-10Lines changed: 8 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,19 @@
1
-
# Supabase PG GraphQL Example App
1
+
# Supabase GraphQL Example
2
2
3
3
A basic HackerNews-like clone where posts can be submitted with url links and then up and down voted.
4
4
5
5
## Showcase
6
6
7
-
### Backend pg_graphql / supabase
7
+
### Backend
8
8
9
9
- CRUD (Query + Mutation Operations)
10
10
- 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
+
12
17
13
18
### Frontend
14
19
@@ -19,13 +24,6 @@ A basic HackerNews-like clone where posts can be submitted with url links and th
19
24
-[urql](https://formidable.com/open-source/urql/) - A highly customizable and versatile GraphQL client
20
25
-[Gravatar](https://en.gravatar.com) - Default avatar profile images from Gravatar
21
26
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.
0 commit comments