@Override
    public void getAllChannels(OnResult<List<Channel>> onResult) {
        getAll(channelCollection.orderBy("id"), onResult, fmap -> {
            if (fmap.hasFields(Channel.requiredFields()))
                return new Channel(fmap);