├── .gitignore ├── LICENSE ├── README.md ├── demo.sql ├── fb ├── bad-data.sql ├── data.sql └── schema.sql └── graphql.sql /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | abuja* 3 | pg_data 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapmeld/GraphpostgisQL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapmeld/GraphpostgisQL/HEAD/README.md -------------------------------------------------------------------------------- /demo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapmeld/GraphpostgisQL/HEAD/demo.sql -------------------------------------------------------------------------------- /fb/bad-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapmeld/GraphpostgisQL/HEAD/fb/bad-data.sql -------------------------------------------------------------------------------- /fb/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapmeld/GraphpostgisQL/HEAD/fb/data.sql -------------------------------------------------------------------------------- /fb/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapmeld/GraphpostgisQL/HEAD/fb/schema.sql -------------------------------------------------------------------------------- /graphql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapmeld/GraphpostgisQL/HEAD/graphql.sql --------------------------------------------------------------------------------