-
This issue is a guide and a place to discuss the contents of the [TROUBLESHOOTING.md](https://github.com/postgraphql/postgraphql/blob/master/TROUBLESHOOTING.md).
There are only three rules (best p…
-
```
CREATE FUNCTION test (money)
RETURNS integer AS $$
BEGIN
RETURN 123;
END;
$$ LANGUAGE plpgsql;
SELECT test(1.0); -- Error, can't find function.
SELECT test(1 + 0.0); -- Error, can't fi…
-
Hey lovely community, we need a logo! Can anyone help us out? I propose that requirements at this stage are:
- Free (as in beer and speech)
- Licensed in a way compatible with the [PostGraphQL lic…
-
In the postgres doku on [Controlling Text Search](https://www.postgresql.org/docs/9.6/static/textsearch-controls.html#docComments) the last example explains how to use `ts_headline` as follows:
```…
-
I am working on a process to download data from a device (roughly 40,000 records at a time), and then upload that data to the database. I'd like to combine the data into an array which would be sent t…
-
I have table of articles with about 100k rows. When I sort this table using `orderBy: PUBLICATION_DATE_DESC` the response is pretty slow. Without the `orderBy` it's fast.
I started debugging it:
`SE…
-
# problem
- https://www.graphile.org/postgraphile/custom-queries/ documents how to create a DB function that `graphile` will expose. there is uses raw SQL, but doesn't confirm that security BKMs a…
-
When I run `postgraphql` as middleware in my Koa app, I frequently see a warning message like:
`MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 schemas:changed listeners…
-
I'm getting this error when I use a custom composite type as a parameter in an sql function.
```malformed record literal: "somefilter"```
Here is the custom type and the function in my database …
-
Is there a way to customize the GraphQL generated schema so that the way in which the tables can be accessed can be changed. Currently, in the GraphiQL interface the table names of tables in the under…