You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FakeDynamo doesn't know which attribute that corresponds to
FakeTable.prototype.query=function(data){varindexedKeyNameif(data.IndexName){// Global Secondary Index if the index name has three or more// parts (separated by '-')varindexParts=data.IndexName.split('-')varprobableGSIIndex=indexParts.length>=3if(probableGSIIndex){returnthis._queryGlobalSecondaryIndex(data)}// Extract the range key for Local Secondary Indexesfor(varkeyindata.KeyConditions){if(key!==this.primaryKey.hash.name){indexedKeyName=key}}}
...
and (silently) fails to find anything as a result.
The text was updated successfully, but these errors were encountered:
If I build a query with an index name but without any filter conditons, e.g.
FakeDynamo doesn't know which attribute that corresponds to
and (silently) fails to find anything as a result.
The text was updated successfully, but these errors were encountered: