Skip to content

objectTagValues

List of object tag values for a particular key.

Arguments

Argument Type Description
key (required) String! Key of the object tag.

Returns

[String!]!

Sample

query ObjectTagValues($key: String!) {
  objectTagValues(key: $key)
}
{
  "key": "example-string"
}
{
  "data": {
    "objectTagValues": [
      "example-string"
    ]
  }
}