postgraphile-plugin-connection-filter-postgis
postgraphile-plugin-connection-filter-postgis copied to clipboard
Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4. Release notes Sourced from word-wrap's releases. 1.2.4 What's Changed Remove default indent by @mohd-akram in jonschlinkert/word-wrap#24 🔒fix: CVE 2023 26115 (2) by @OlafConijn in...
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...
https://postgis.net/docs/ST_Distance.html More goodies please 😉
I would like to extend the plugin to add the function st_dwithin. The postgis function is described here: https://postgis.net/docs/ST_DWithin.html I already made the following changes: Use this draft to compare:...
See: https://postgis.net/workshops/postgis-intro/knn.html You gave us so much - we want more 😄
Currently Draft to link against files inside of the changes
 the postgraphile query: ``` query findNearby($point: GeoJSON) { allApiDjtinderusers ( filter: { lastLocation: { equals: $point } }) { nodes { id lastLocation { geojson srid y x }...
The documentation on how to use filters is unclear/missing. I think you should provide at least 1 example. I tried to filter by a point on the following table containing...
If I had a function that returned a `geometry (Point)` as a computed column on my table, it does not attach the filter functions to it.
By default, we should only expose functions/operators that are guaranteed to be compatible given a column's type details, namely: - base type: geography, geometry - subtype: Point, LineString, Polygon, MultiPoint,...