0
votes

For the image click here: JSON Image I got a JSON like this and I'm trying to only get results that have a 'naamKort' equal to 'NEC'.

I currently got this:

getData(onUpdate) {
        this.db.list('/sndata/wedstrijden', {
            query: {
                orderByChild: 'teamThuis'.'naamKort',
                equalTo: 'NEC',
            }
        }).subscribe((data) => {
            onUpdate(data);
            this.gamesObservable.emit(data);
        });
    }

But the orderByChild: 'teamThuis'.'naamKort', doesn't work. So i'm unsure on how to exactly use equal to when the value is inside a different value. If I do a query for let's say 'tijd' equalTo '20:30' it works fine.

1

1 Answers

0
votes

Found it. Apparently I needed to use:

 orderByChild: 'teamThuis/naamKort',