NIH | National Cancer Institute | NCI Wiki  

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Copied values from the Swagger json file.

A When you perform a query, the system requires it in the context of a compoundQuery element with a join operator, even if it contains only one simple query. A simple query consists of the following parts:

  • attribute or attributeMatch
  • value
  • operator
  • levelFilter (optional)

The following example simple query finds only the collections or data files registered by the jane_doe user:

Code Block
      {
		"compoundQuery":	{
			"operator":"AND",
			"queries":	[
					{
				"attribute":"registered_by",
				"value":"jane_doe",
				"operator":"EQUAL"
					}
				]
			}
      }

The following example simple query finds only the collections or data files, at level 1 or above, in which any attribute equals jane_doe:

Code Block
      {
		"compoundQuery":	{
			"operator":"AND",
			"queries":	[
					{
				"operator":"EQUAL",
				"value":"jane_doe",
				"levelFilter":{"level":1,"operator":"NUM_GREATER_OR_EQUAL"},
				"attributeMatch":"ANY"
					}
				]
			}
      }

For the operator within each simple query, the valid values are as follows:

  • EQUAL
  • NOT_EQUAL
  • LIKE
  • NUM_LESS_THAN
  • NUM_GREATER_THAN
  • NUM_LESS_OR_EQUAL
  • NUM_GREATER_OR_EQUAL