Joe Nelson

Results 213 comments of Joe Nelson

Thanks @amirsaber, that looks accurate to me. @steve-chavez can you confirm? If it's all good I'll add it to docs.

@Mithrandir21 are you interested in sending a PR to document this tip?

If you've read through https://postgrest.com/en/v0.4/api.html#resource-embedding then here's one such query: ``` /films?select=*,actors{*} ``` Postgrest will find the connection through the Roles table. Is this the kind of thing you're wondering...

I believe this documentation, once written, will address the concerns in https://github.com/begriffs/postgrest/issues/809

Note to self: we also want to give an example of hiding the jwt functions themselves in a separate schema from the public api schema.

Hi @devotis, you can use a postgresql [trigger](https://www.postgresql.org/docs/9.6/static/trigger-definition.html) to perform actions before/after certain db operations. Inside the trigger you can emit a sql [NOTIFY](https://www.postgresql.org/docs/9.6/static/sql-notify.html) command and have an external bridge...

Note to self, also include example of read-only or invisible fields based on user permissions as @sqwishy requested in the chat. > I guess in my case I'd want to...

Also @daurnimator poses another scenario we might want to model: > you can see all friends details; some friends of friends details; and anyone else visibility is determined by privacy...