INPUT_OBJECT

ProtocolHashFilter

Provides filters for checking equality of the property value of ProtocolHash type.

link GraphQL Schema definition

  • input ProtocolHashFilter {
  • # Matches if the property value equals to this filter value.
  • equalTo: ProtocolHash
  • # Matches if the property value does NOT equal to this filter value.
  • notEqualTo: ProtocolHash
  • # Matches if the property value is contained in these filter values.
  • in: [ProtocolHash!]
  • # Matches if the property value is NOT contained in these filter values.
  • notIn: [ProtocolHash!]
  • }