Skip to content
John D edited this page May 24, 2020 · 5 revisions

5.2.4

Bug fixes

  1. Missing LSI Indexes Projection Settings
  2. Failed to register dynamoDBMapperRef
  3. Limit and Consistent Reads only works on GSIs

New Features

  1. Ability to apply filter expressions to a Query
@Query(fields = "leaveDate", limit = 1, filterExpression = "contains(#field, :value)",
			expressionMappingNames = {@ExpressionAttribute(key = "#field", value = "name")},
			expressionMappingValues = {@ExpressionAttribute(key=":value", value = "projection")})
	List<User> findByPostCode(String postCode);

Clone this wiki locally