@keystonejs/fields-location-google
v3.4.2
Published
KeystoneJS LocationGoogle field type.
Downloads
690
Readme
LocationGoogle
This is the last active development release of this package as Keystone 5 is now in a 6 to 12 month active maintenance phase. For more information please read our Keystone 5 and beyond post.
The LocationGoogle Field Type enables storing data from the Google Maps API.
Usage
const { LocationGoogle } = require('@keystonejs/fields-location-google');
const { Keystone } = require('@keystonejs/keystone');
const keystone = new Keystone({...});
keystone.createList('Event', {
fields: {
venue: {
type: LocationGoogle,
googleMapsKey: 'GOOGLE_MAPS_KEY',
},
},
});
GraphQL
query {
allEvents {
venue {
id
googlePlaceID
formattedAddress
lat
lng
}
}
}
Will yield:
{
"data": {
"allEvents": [
{
"venue": {
"id": "1",
"googlePlaceID": "ChIJOza7MD-uEmsRrf4t12uji6Y",
"formattedAddress": "10/191 Clarence St, Sydney NSW 2000, Australia",
"lat": -33.869374,
"lng": 151.205097
}
}
]
}
}
Mutations
To create a Location
, pass the Google place_id
for the desired field path.
mutation {
createEvent(data: { venue: "ChIJOza7MD-uEmsRrf4t12uji6Y" }) {
venue {
id
googlePlaceID
formattedAddress
lat
lng
}
}
}
Results in:
{
"createEvent": {
"venue": {
"id": "1",
"googlePlaceID": "ChIJOza7MD-uEmsRrf4t12uji6Y",
"formattedAddress": "10/191 Clarence St, Sydney NSW 2000, Australia",
"lat": -33.869374,
"lng": 151.205097
}
}
}