All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.xyz.mcxross.kaptos.generated.inputs.jsonb_comparison_exp.kt Maven / Gradle / Ivy

The newest version!
package xyz.mcxross.kaptos.generated.inputs

import kotlin.Boolean
import kotlin.String
import kotlin.collections.List
import kotlinx.serialization.Serializable
import xyz.mcxross.graphql.client.Generated
import xyz.mcxross.kaptos.generated.jsonb

/**
 * Boolean expression to compare columns of type "jsonb". All fields are combined with logical
 * 'AND'.
 */
@Generated
@Serializable
public data class jsonb_comparison_exp(
  public val _cast: jsonb_cast_exp? = null,
  /**
   * is the column contained in the given json value
   */
  public val _contained_in: jsonb? = null,
  /**
   * does the column contain the given json value at the top level
   */
  public val _contains: jsonb? = null,
  public val _eq: jsonb? = null,
  public val _gt: jsonb? = null,
  public val _gte: jsonb? = null,
  /**
   * does the string exist as a top-level key in the column
   */
  public val _has_key: String? = null,
  /**
   * do all of these strings exist as top-level keys in the column
   */
  public val _has_keys_all: List? = null,
  /**
   * do any of these strings exist as top-level keys in the column
   */
  public val _has_keys_any: List? = null,
  public val _in: List? = null,
  public val _is_null: Boolean? = null,
  public val _lt: jsonb? = null,
  public val _lte: jsonb? = null,
  public val _neq: jsonb? = null,
  public val _nin: List? = null,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy