何を実現したいのかを書きましょう
特定条件に合致するレコードの件数を取りたい
発生した問題やエラーメッセージを具体的に書きましょう
Uncaught ReferenceError: _1次面接日 is not defined
実行したコードをコピー&ペーストしましょう
kintone.api(
"/k/v1/records",
"GET",
{
app: kintone.app.getId(),
query: _1次面接日 >= "2023-05-01",
totalCount: true,
},
function (response) {
if (response.totalCount !== undefined) {
var totalCount = response.totalCount;
console.log(totalCount);
} else {
console.error("Failed to retrieve total count.");
}
}
);
レコードの中には_1次面接日があります
