Zend certified PHP/Magento developer

With GraphQL can I apply a filter in customAttributeMetadata?

I’m getting the values and labels for an specific attribute_code.

query{
  customAttributeMetadata(
    attributes: {
      attribute_code: "armazenamento"
      entity_type: "4"
    }
  ) {
    items {
      attribute_options{
        label
        value
      }
    }
  }
}

result:

 "customAttributeMetadata": {
      "items": [
        {
          "attribute_options": [
            {
              "label": "16 TB",
              "value": "6380"
            },
            {
              "label": "14 TB",
              "value": "6379"
            }
            ....

It is possible to apply a filter to this instead of getting all the results? Like if the value is equal to 6380?