export default ({ commit }, ceId) => {
  Georeference.where({ collecting_event_id: ceId }).then((response) => {
    commit(MutationNames.SetGeoreferences, response.body)
  })
}