Skip to content

Instantly share code, notes, and snippets.

@wovalle
Last active February 6, 2019 16:10
Show Gist options
  • Save wovalle/45b01d4d64bac11d6563afc4c0d11112 to your computer and use it in GitHub Desktop.
Save wovalle/45b01d4d64bac11d6563afc4c0d11112 to your computer and use it in GitHub Desktop.
import { getRepository } from 'fireorm';
import Band from './models/Band';
const bandRepository = getRepository(Band);
const band = await bandRepository.findById('red-hot-chili-peppers');
const albumsAfter2000 = await band.albums.whereGreaterOrEqualThan('year', 2000).find();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment