Polymerfire Firebase Firestore mixin - sorting

307 Views Asked by At

I have a Polymer property using Polymerfire Firestore mixin and a dom-repeat:

        mySections: {
                    type: Array,
                    collection: '/users/{user.uid}/sections',
                    query: (q, el) => {
                             q = q.orderBy('sectionName')
                             return q;
                           }
                  }


<template is="dom-repeat" items="{{mySections}}" as="Section" index-as="SectionIndex">

    {{Section.sectionName}}

</template>

However, it's not sorting on sectionName? What am I doing wrong? Am I missing something here? Thanks.

0

There are 0 best solutions below