INPUT_OBJECT

NullableProtocolHashArrayFilter

Provides filters for checking the filter value against array of the property values of nullable ProtocolHash type.

link GraphQL Schema definition

  • input NullableProtocolHashArrayFilter {
  • # Matches if the property values include this filter value.
  • includes: ProtocolHash
  • # Matches if the property values do NOT include this filter value.
  • notIncludes: ProtocolHash
  • # If the filter value is `true` then matches `null` property value. If the filter
  • # value is `false` then matches property values different from `null`.
  • isNull: Boolean
  • }