Open1

DynamoDBのこれしたいとき

bohebohebohebohe

範囲検索したいとき

大なり小なりは1つしか書けないんです
なので、範囲検索をしたい場合はbetweenを使います。

  • 大なり小なり検索
KeyConditionExpression: '#pk = :type and #sk > :date',
  • 範囲検索
 KeyConditionExpression: '#pk = :key and #state between :state1 and :state2',