Hello,
I am trying to get a field named “Statsig Url” in a table named Experiments (this is a field with the url type).
(My intent is to get the record id based on the value of the Statsig Url field). A filter will be applied in the url.
let table = base.getTable("Experiments");
console.table( await table.selectRecordsAsync( {"fields" : ["Experiment Name", "StatSig Link"]}));
console.table( await table.selectRecordsAsync( {"fields" : table.fields}));
I have tried with different approaches (testing other fields...). Each time I only get the primary key.
