Feature request: procedure (as well as function) support
Open
💅 enhancement
🔁 revisit-in-v5
- Dominant language
- TypeScript
- Stars
- 12.9k
- Forks
- 625
- Avg merge
- 5h 23m
- Merged PRs (30d)
- 24
Description
I'm submitting a ...
* [x] feature request
PostGraphile does not currently have support for the [new procedures](https://www.graphile.org/postgraphile/procedures/) introduced in PostgreSQL 11
eg:
```sql
CREATE OR REPLACE PROCEDURE public.test_procedure(name1 text ,name2 text )
LANGUAGE 'plpgsql'
AS $BODY$
begin
insert into tablename values(name1.name2);
END;
$BODY$;
;
```
Contributor guide
Assessment
This issue has not been assessed yet.