Skip to content

Instantly share code, notes, and snippets.

@ab-pm
ab-pm / Dockerfile
Last active November 13, 2019 18:13
Dockerized Database for PostGraphile Development
FROM djmccormick/postgres-alpine-wal2json AS postgres
COPY /postgresql.conf /etc/postgresql.conf
COPY /setup.sql /docker-entrypoint-initdb.d/setup.sql
EXPOSE 5432
CMD ["postgres", "-c", "config_file=/etc/postgresql.conf"]
@ab-pm
ab-pm / demo queries.md
Last active November 5, 2019 18:51
Local entities

Assuming the folling schema:

CREATE TABLE person (
	id serial PRIMARY KEY,
	name text,
	email text
);
CREATE TABLE team (
 	id serial PRIMARY KEY,
	name text