├── .circleci └── config.yml ├── .gitignore ├── .prettierrc.js ├── .travis.yml ├── README.md ├── __tests__ ├── __snapshots__ │ ├── schema.minimal_dimensional.test.ts.snap │ ├── schema.minimal_type.test.ts.snap │ ├── schema.minimal_type_and_srid.test.ts.snap │ ├── schema.minimal_unconstrained.test.ts.snap │ └── schema.test.ts.snap ├── fixtures │ └── queries │ │ ├── geog.graphql │ │ ├── geog_geometry.graphql │ │ ├── geog_geometrym.graphql │ │ ├── geog_geometryz.graphql │ │ ├── geog_geometryzm.graphql │ │ ├── geog_linestring.graphql │ │ ├── geog_linestringm.graphql │ │ ├── geog_linestringz.graphql │ │ ├── geog_linestringzm.graphql │ │ ├── geog_multilinestring.graphql │ │ ├── geog_multilinestringm.graphql │ │ ├── geog_multilinestringz.graphql │ │ ├── geog_multilinestringzm.graphql │ │ ├── geog_multipoint.graphql │ │ ├── geog_multipointm.graphql │ │ ├── geog_multipointz.graphql │ │ ├── geog_multipointzm.graphql │ │ ├── geog_multipolygon.graphql │ │ ├── geog_multipolygonm.graphql │ │ ├── geog_multipolygonz.graphql │ │ ├── geog_multipolygonzm.graphql │ │ ├── geog_point.graphql │ │ ├── geog_pointm.graphql │ │ ├── geog_pointz.graphql │ │ ├── geog_pointzm.graphql │ │ ├── geog_polygon.graphql │ │ ├── geog_polygonm.graphql │ │ ├── geog_polygonz.graphql │ │ ├── geog_polygonzm.graphql │ │ ├── geom.graphql │ │ ├── geom_geometry.graphql │ │ ├── geom_geometrym.graphql │ │ ├── geom_geometryz.graphql │ │ ├── geom_geometryzm.graphql │ │ ├── geom_linestring.graphql │ │ ├── geom_linestringm.graphql │ │ ├── geom_linestringz.graphql │ │ ├── geom_linestringzm.graphql │ │ ├── geom_multilinestring.graphql │ │ ├── geom_multilinestringm.graphql │ │ ├── geom_multilinestringz.graphql │ │ ├── geom_multilinestringzm.graphql │ │ ├── geom_multipoint.graphql │ │ ├── geom_multipointm.graphql │ │ ├── geom_multipointz.graphql │ │ ├── geom_multipointzm.graphql │ │ ├── geom_multipolygon.graphql │ │ ├── geom_multipolygonm.graphql │ │ ├── geom_multipolygonz.graphql │ │ ├── geom_multipolygonzm.graphql │ │ ├── geom_point.graphql │ │ ├── geom_pointm.graphql │ │ ├── geom_pointz.graphql │ │ ├── geom_pointzm.graphql │ │ ├── geom_polygon.graphql │ │ ├── geom_polygonm.graphql │ │ ├── geom_polygonz.graphql │ │ ├── geom_polygonzm.graphql │ │ ├── srid.geography.graphql │ │ └── srid.geometry.graphql ├── helpers.ts ├── integration │ ├── __snapshots__ │ │ └── queries.test.ts.snap │ └── queries.test.ts ├── schema.minimal_dimensional.test.ts ├── schema.minimal_type.test.ts ├── schema.minimal_type_and_srid.test.ts ├── schema.minimal_unconstrained.test.ts ├── schema.sql └── schema.test.ts ├── jest.config.js ├── package.json ├── scripts └── test ├── src ├── NOTES.md ├── PostgisExtensionDetectionPlugin.ts ├── PostgisInflectionPlugin.ts ├── PostgisRegisterTypesPlugin.ts ├── PostgisVersionPlugin.ts ├── Postgis_GeometryCollection_GeometriesPlugin.ts ├── Postgis_LineString_PointsPlugin.ts ├── Postgis_MultiLineString_LineStringsPlugin.ts ├── Postgis_MultiPoint_PointsPlugin.ts ├── Postgis_MultiPolygon_PolygonsPlugin.ts ├── Postgis_Point_LatitudeLongitudePlugin.ts ├── Postgis_Polygon_RingsPlugin.ts ├── constants.ts ├── debug.ts ├── index.ts ├── interfaces.ts ├── makeGeoJSONType.ts └── utils.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | trailingComma: "es5" 3 | } 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__snapshots__/schema.minimal_dimensional.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/__snapshots__/schema.minimal_dimensional.test.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/schema.minimal_type.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/__snapshots__/schema.minimal_type.test.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/schema.minimal_type_and_srid.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/__snapshots__/schema.minimal_type_and_srid.test.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/schema.minimal_unconstrained.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/__snapshots__/schema.minimal_unconstrained.test.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/schema.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/__snapshots__/schema.test.ts.snap -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_geometry.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_geometry.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_geometrym.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_geometrym.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_geometryz.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_geometryz.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_geometryzm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_geometryzm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_linestring.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_linestring.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_linestringm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_linestringm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_linestringz.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_linestringz.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_linestringzm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_linestringzm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_multilinestring.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_multilinestring.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_multilinestringm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_multilinestringm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_multilinestringz.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_multilinestringz.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_multilinestringzm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_multilinestringzm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_multipoint.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_multipoint.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_multipointm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_multipointm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_multipointz.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_multipointz.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_multipointzm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_multipointzm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_multipolygon.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_multipolygon.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_multipolygonm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_multipolygonm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_multipolygonz.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_multipolygonz.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_multipolygonzm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_multipolygonzm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_point.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_point.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_pointm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_pointm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_pointz.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_pointz.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_pointzm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_pointzm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_polygon.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_polygon.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_polygonm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_polygonm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_polygonz.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_polygonz.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geog_polygonzm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geog_polygonzm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_geometry.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_geometry.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_geometrym.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_geometrym.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_geometryz.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_geometryz.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_geometryzm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_geometryzm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_linestring.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_linestring.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_linestringm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_linestringm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_linestringz.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_linestringz.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_linestringzm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_linestringzm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_multilinestring.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_multilinestring.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_multilinestringm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_multilinestringm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_multilinestringz.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_multilinestringz.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_multilinestringzm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_multilinestringzm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_multipoint.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_multipoint.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_multipointm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_multipointm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_multipointz.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_multipointz.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_multipointzm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_multipointzm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_multipolygon.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_multipolygon.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_multipolygonm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_multipolygonm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_multipolygonz.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_multipolygonz.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_multipolygonzm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_multipolygonzm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_point.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_point.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_pointm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_pointm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_pointz.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_pointz.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_pointzm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_pointzm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_polygon.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_polygon.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_polygonm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_polygonm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_polygonz.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_polygonz.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/geom_polygonzm.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/geom_polygonzm.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/srid.geography.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/srid.geography.graphql -------------------------------------------------------------------------------- /__tests__/fixtures/queries/srid.geometry.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/fixtures/queries/srid.geometry.graphql -------------------------------------------------------------------------------- /__tests__/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/helpers.ts -------------------------------------------------------------------------------- /__tests__/integration/__snapshots__/queries.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/integration/__snapshots__/queries.test.ts.snap -------------------------------------------------------------------------------- /__tests__/integration/queries.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/integration/queries.test.ts -------------------------------------------------------------------------------- /__tests__/schema.minimal_dimensional.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/schema.minimal_dimensional.test.ts -------------------------------------------------------------------------------- /__tests__/schema.minimal_type.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/schema.minimal_type.test.ts -------------------------------------------------------------------------------- /__tests__/schema.minimal_type_and_srid.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/schema.minimal_type_and_srid.test.ts -------------------------------------------------------------------------------- /__tests__/schema.minimal_unconstrained.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/schema.minimal_unconstrained.test.ts -------------------------------------------------------------------------------- /__tests__/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/schema.sql -------------------------------------------------------------------------------- /__tests__/schema.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/__tests__/schema.test.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/package.json -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/scripts/test -------------------------------------------------------------------------------- /src/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/NOTES.md -------------------------------------------------------------------------------- /src/PostgisExtensionDetectionPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/PostgisExtensionDetectionPlugin.ts -------------------------------------------------------------------------------- /src/PostgisInflectionPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/PostgisInflectionPlugin.ts -------------------------------------------------------------------------------- /src/PostgisRegisterTypesPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/PostgisRegisterTypesPlugin.ts -------------------------------------------------------------------------------- /src/PostgisVersionPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/PostgisVersionPlugin.ts -------------------------------------------------------------------------------- /src/Postgis_GeometryCollection_GeometriesPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/Postgis_GeometryCollection_GeometriesPlugin.ts -------------------------------------------------------------------------------- /src/Postgis_LineString_PointsPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/Postgis_LineString_PointsPlugin.ts -------------------------------------------------------------------------------- /src/Postgis_MultiLineString_LineStringsPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/Postgis_MultiLineString_LineStringsPlugin.ts -------------------------------------------------------------------------------- /src/Postgis_MultiPoint_PointsPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/Postgis_MultiPoint_PointsPlugin.ts -------------------------------------------------------------------------------- /src/Postgis_MultiPolygon_PolygonsPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/Postgis_MultiPolygon_PolygonsPlugin.ts -------------------------------------------------------------------------------- /src/Postgis_Point_LatitudeLongitudePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/Postgis_Point_LatitudeLongitudePlugin.ts -------------------------------------------------------------------------------- /src/Postgis_Polygon_RingsPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/Postgis_Polygon_RingsPlugin.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/debug.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /src/makeGeoJSONType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/makeGeoJSONType.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/postgis/HEAD/yarn.lock --------------------------------------------------------------------------------