Skip to content

Instantly share code, notes, and snippets.

@kleysonr
Created April 23, 2021 01:17
Show Gist options
  • Save kleysonr/30092f56c9a5b3d5b8827aef69c4c2e0 to your computer and use it in GitHub Desktop.
Save kleysonr/30092f56c9a5b3d5b8827aef69c4c2e0 to your computer and use it in GitHub Desktop.
MongoDB-ref

Check if field exists

{
    $addFields: {
        isFreePoint: {
            $cond: [{
                    "$ifNull": [
                        "$mgmt_type_id",
                        false
                    ]
                },
                false,
                true
            ]
        }
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment