I am trying to show the common field data. I can find the field data.
Events.find({}, { sort: { createdAt: -1 }}).fetch()
Like:
abc
abc
xyz
Now I want to show common data like:
abc
xyz
How can I do this?
I am trying to show the common field data. I can find the field data.
Events.find({}, { sort: { createdAt: -1 }}).fetch()
Like:
abc
abc
xyz
Now I want to show common data like:
abc
xyz
How can I do this?