Skip to content

Instantly share code, notes, and snippets.

@anthony-cros
Created December 21, 2017 10:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anthony-cros/1a06e4fae962078d05b783187dff154a to your computer and use it in GitHub Desktop.
Save anthony-cros/1a06e4fae962078d05b783187dff154a to your computer and use it in GitHub Desktop.
{ "stage": "4" }
{ "$eq": { "mycn_status":"amplified" }}
{ "$not": { "stage": 4 }}
{ "$not": { "$lt": { "stage": 4 }}}
{ "$not": { "$not": { "stage": "4" }}}
{ "$not": { "$not": { "$lt": { "stage": 4 }}}}
{ "risk": ["high","low"] }
{ "$nin": { "risk": ["high","low"] }}
{ "$not": { "$in": { "risk": ["high","low"] }}}
{ "$or": [{ "$eq": { "mycn_status":"amplified" }},{ "stage": "4" } ] }
{ "stage": "4", "mycn_status":"amplified" }
[{ "stage": "4" },{ "mycn_status":"amplified" } ]
{ "$eq": { "mycn_status": "amplified" }, "$not": { "stage": 4 } }
{ "$and": [ { "$eq": { "mycn_status":"amplified" }}, { "$in": { "risk": ["high","low"] }}, { "$not": { "$eq": { "stage": 4 }}}, { "$lt": { "stage": 4 }}, { "$or": [ { "$eq": { "mycn_status":"amplified" }}, { "stage": "4" } ] } ] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment