Suggest an editImprove this articleRefine the answer for “What does $gt do?”. Your changes go to moderation before they’re published.Approval requiredContentWhat you’re changing🇺🇸EN🇺🇦UAPreviewTitle (EN)Short answer (EN)`$gt` (greater than) is an operator that selects documents where a field's value is strictly greater than the given one, e.g. `db.users.find({ age: { $gt: 18 } })`. **Key point:** it returns only documents with a value strictly greater than the one given - equal values don't count.Shown above the full answer for quick recall.Answer (EN)Image`$gt` (greater than) is an operator that selects documents where a field's value is **strictly greater** than the given one. **Example:** ```js db.users.find({ age: { $gt: 18 } }) ``` This query returns every document where `age` is **greater than 18**.For the reviewerNote to the moderator (optional)Visible only to the moderator. Helps review go faster.