Some context:
My table has two columns, longitude and latitude. I want to be able to create a query that can receive an input of a longitude, latitude and a number that represents the maximum number of kilometers distance.
The query will return the rows that are within that distance ordered by the resulting distance.
I have seen few options for custom conditions, but that might be pretty hacky...
I thought maybe there is a way to do it and use the build in order by
that PostGraphile
generates, but the I'm if there is a way to pass variable to the order by.
The question:
What is the best to do it in PostGraphile
?
Thanks in advance!
To do this, step 1 is to build your filter object with your x, y and radius:
(
build.graphql
is an instance of thegraphql
module, the reference GraphQL implementation, you can read more about it here and here.)Step 2 is to add a condition that also does ordering:
Finally you either load both these plugins or if you prefer you can make a single plugin that encompasses both:
I've added an example with ordering to the docs:
https://www.graphile.org/postgraphile/make-add-pg-table-condition-plugin/#example-with-ordering
NOTE: before graphile-utils 4.9.1 is released you'll need to add this plugin via
--prepend-plugins
(orprependPlugins
for library users) because otherwise there's a plugin ordering issue that means that orders added bymakeAddPgTableConditionPlugin
come after the default orders.