I am a little confused as to how the API is using the “query” to check against Lookups with “valueFormat” set to “rich”.
Example:
I have a table with items
that are sorted by project
(these are a lookup of table Projects
)
I am trying to query the items
to select only by project
title.
This has worked in the past (this is an old CLI tool I wrote almost 2 years ago, but have not used recently)
However now I cannot get a query to work.
These are the pseudo queries I have tried: "Project":"{project_title}"
or "Project":"{project_rowId}"
or as {project_column_id}:{project_table_row_id}
I can of course set the valueFormat
to simple
or just not set a valueFormat
however I have a return object that I am mapping this to, and I would rather not rewrite a “simple” object just for this kind of use case.
Is there a different query
format <column_name_or_id>:<value>
that I should be using for a lookup name?