Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 419 Bytes

README.md

File metadata and controls

12 lines (11 loc) · 419 Bytes

This is heavly work in progress!

Apollo-link-algolia

apollo-link-algolia provides you a simple way to query Algolia in graphQL with Apollo-client without building a graphQL server

Example

const LOCATIONS_QUERY = gql`
  query LocationsQuery {
    locationsInRadius @algolia(index: "dev_LOCATIONS", aroundLatLng: "40.71, -74.01", aroundRadius: 1000)
  }
`