Fetch performance metrics for a single post. Available for personal workflows and automations only, using a personal API key.

```graphql
query GetPostMetrics {
  post(input: { id: "some_post_id" }) {
    id
    text
    channelId
    metrics {
      type
      name
      value
      unit
    }
    metricsUpdatedAt
  }
}
```
