Condividi tramite


IS_PRIMITIVE (query NoSQL)

SI APPLICA A: NoSQL

Restituisce un valore booleano che indica se il tipo dell'espressione specificata è una primitiva (stringa, booleana, numerica o null).

Sintassi

IS_PRIMITIVE(<expr>)  

Argomenti

Descrizione
expr Qualsiasi espressione .

Tipi restituiti

Restituisce un'espressione booleana.

Esempi

Nell'esempio seguente vengono visualizzati vari valori per verificare se si tratta di una primitiva.

SELECT VALUE {
    isBooleanAPrimitive: IS_PRIMITIVE(true),
    isNumberAPrimitive: IS_PRIMITIVE(1),
    isStringAPrimitive: IS_PRIMITIVE("value"),
    isArrayAPrimitive: IS_PRIMITIVE([ "green", "red", "yellow" ]),
    isNullAPrimitive: IS_PRIMITIVE(null),
    isObjectAPrimitive: IS_PRIMITIVE({ "name": "Tecozow coat" }),
    isObjectStringPropertyAPrimitive: IS_PRIMITIVE({ "name": "Tecozow coat" }.name),
    isObjectBooleanPropertyAPrimitive: IS_PRIMITIVE({ "onSale": false }.onSale),
    isUndefinedAPrimitive: IS_PRIMITIVE({}.category)
}
[
  {
    "isBooleanAPrimitive": true,
    "isNumberAPrimitive": true,
    "isStringAPrimitive": true,
    "isArrayAPrimitive": false,
    "isNullAPrimitive": true,
    "isObjectAPrimitive": false,
    "isObjectStringPropertyAPrimitive": true,
    "isObjectBooleanPropertyAPrimitive": true,
    "isUndefinedAPrimitive": false
  }
]

Osservazioni: