I have this metadata on the trace
but when I search by this metadata key it finds zero traces or runs. also when I literally click on the value so the query is generated by langsmith is still doesn’t work.
queries:
and(eq(metadata_key, “suggested_email_id”), eq(metadata_value, 137652))
----
and(eq(metadata_key, “suggested_email_id”), eq(metadata_value, 137652), eq(is_root, true))
I have a similar issue when searching by output key, the output key is an object so the trace returns
{
"action": "generate_draft",
"draft": {
"subject": "x",
"date": "2026-03-09T17:32:44.351Z",
"body": "<html><body><p>hi</p></body></html>",
"wordCount": 110,
"sessionId": "d778d06b-fd38-41ec-b501-1da877bdfb11",
"metadata": {
"tone": "professional",
},
"id": 137652,
"createdAt": "2026-03-09T17:32:44.416Z",
"updatedAt": "2026-03-09T17:32:44.416Z"
},
}
I have tried and(eq(output_key, “draft.id”), eq(output_value, 137652), eq(is_root, true))
and and(eq(output_key, “draft”), like(output_value, “%137652%”), eq(is_root, true))
